Answers for "set background color of material text field flutter"

19

text fieldform color flutter

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

flutter text color

new Text(
  'Welcome to Flutter Tutorial.',
  style: TextStyle(
    color: Colors.blue,
  ),
)
Posted by: Guest on January-21-2021

Code answers related to "set background color of material text field flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language