Answers for "change input cursor color textfield flutter"

10

how to change input text color in flutter

TextField(
  style: TextStyle(color: Colors.red),
  decoration: InputDecoration(fillColor: Colors.orange, filled: true),
)
Posted by: Guest on June-11-2020
0

flutter textfield cursor color

MaterialApp(
    theme: ThemeData(
        cursorColor: Colors.red,
        )
    );
Posted by: Guest on September-27-2020

Code answers related to "change input cursor color textfield flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language