Answers for "flutter inputdecoration hint text color"

19

text fieldform color flutter

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

flutter inputdecoration placeholder color

decoration: InputDecoration(
	hintText: "Password",
    // place the color here
	hintStyle: TextStyle(fontSize: 2.0, color: Colors.redAccent),
    ...
)
Posted by: Guest on March-12-2021

Code answers related to "flutter inputdecoration hint text color"

Code answers related to "Dart"

Browse Popular Code Answers by Language