flutter text color

199

text fieldform color flutter -

TextField(
  style: TextStyle(color: Colors.red),
  decoration: InputDecoration(fillColor: Colors.orange, filled: true),
)

flutter text color -

new Text(
  'Welcome to Flutter Tutorial.',
  style: TextStyle(
    color: Colors.blue,
  ),
)

color textfield text flutter -

TextField(
  style: TextStyle(color: Colors.white),
  ...
)

Comments

Submit
0 Comments