TextField(
style: TextStyle(color: Colors.red),
decoration: InputDecoration(fillColor: Colors.orange, filled: true),
)
new Text(
'Welcome to Flutter Tutorial.',
style: TextStyle(
color: Colors.blue,
),
)
labelStyle: TextStyle(
color: Colors.white,
)
TextField(
style: TextStyle(color: Colors.white),
...
)
TextField(
style: TextStyle(color: Colors.red),
)
Text(
"Hello",
style: TextStyle(color: Colors.black.withOpacity(0.5)),
)
Text(
''Hello',
style: TextStyle(
color: Colors.blue,
),
)