1

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.

Jean-Pierre Schnyder
  • 1,572
  • 1
  • 15
  • 24

2 Answers2

0

you can use :

SelectableText("hello over there")

Fahmi Sawalha
  • 682
  • 6
  • 19
0

use Clipboard

  Clipboard.setData(ClipboardData(text: name_cont.text))

This answer may help you: https://stackoverflow.com/a/46260376/1136999

Mohamed Amin
  • 997
  • 2
  • 12
  • 29