Answers for "change textfield icon color flutter"

11

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
2

change icon color flutter

Icon(
  Icons.widgets,
  color: Colors.blue.shade400,
)
Posted by: Guest on December-01-2020

Code answers related to "change textfield icon color flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language