Flutter Clipboard option not showing in TextInputField

154 views Asked by At

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

1

There are 1 answers

0
hasan karaman On

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',
    ),
   
    ),