1

I'm would like to change the cursor color in a TextFormField.

I don't find the Property.

To know I'm on a Flutter web app and not mobile.

  • 1
    Does this answer your question? [how to change TextField cursor color in flutter](https://stackoverflow.com/questions/65897342/how-to-change-textfield-cursor-color-in-flutter) – maxmitz Jul 06 '22 at 20:47
  • Yes, finally that was easy to do ! Thank you. –  Jul 21 '22 at 13:11

1 Answers1

0

From this answer:

You can change specific textfield cursor color for your solution:

TextField(cursorColor: Colors.white)

but if you want to change it completely in your project then you can check this here

maxmitz
  • 258
  • 1
  • 4
  • 17