'How to enable copy/paste on Flutter TextField widget?
Trying to find the answer using Google search was a problem for me. This is really surprising. I want to be able to copy and paste TextField contents between different TextField's.
Solution 1:[1]
you can use :
SelectableText("hello over there")
Solution 2:[2]
use Clipboard
Clipboard.setData(ClipboardData(text: name_cont.text))
This answer may help you: https://stackoverflow.com/a/46260376/1136999
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Fahmi Sawalha |
| Solution 2 | Mohamed Amin |
