1

Here I am getting two problems:

  • When I long press on TextInputField, I want here clipboard option which I am not getting to paste text from ClipBoard
  • Selected Text is not visible.

Can anyone help me?

enter image description here

Pratik Butani
  • 60,504
  • 58
  • 273
  • 437

1 Answers1

0

It may be due to the selected color. You can add the color of the theme selected. textSelectionHandleColor

MaterialApp(
  
    theme: ThemeData(
      textSelectionHandleColor: Colors.blue[400],
      fontFamily: 'Roboto',
    ),
   
    ),
hasan karaman
  • 1,260
  • 6
  • 12