how to change input text color in flutter

226

how to change input text color in flutter -

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

color textfield text flutter -

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

Comments

Submit
0 Comments