Answers for "how to color text field flutter"

10

text fieldform color flutter

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

flutter text color

Text(
  "Hello",
  style: TextStyle(color: Colors.black.withOpacity(0.5)),
)
Posted by: Guest on August-20-2021

Code answers related to "how to color text field flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language