Answers for "change the color of an icon in flutter textfield"

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
3

color textfield text flutter

TextField(
  style: TextStyle(color: Colors.white),
  ...
)
Posted by: Guest on September-19-2020

Code answers related to "change the color of an icon in flutter textfield"

Code answers related to "Dart"

Browse Popular Code Answers by Language