flutter textFiled color code example
Example 1: text fieldform color flutter
TextField(
style: TextStyle(color: Colors.red),
decoration: InputDecoration(fillColor: Colors.orange, filled: true),
)
Example 2: flutter text color
new Text(
'Welcome to Flutter Tutorial.',
style: TextStyle(
color: Colors.blue,
),
)
Example 3: color textfield text flutter
TextField(
style: TextStyle(color: Colors.white),
...
)