Answers for "how to change the focus colour of textformfield in flutter"

10

text fieldform color flutter

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

flutter TextFormField background color

TextFormField(
	decoration: InputDecoration(
    	labelText: "Resevior Name",
        fillColor: Colors.white,
        filled: true, // dont forget this line
        ...
    )
    ...
)
Posted by: Guest on March-12-2021

Code answers related to "how to change the focus colour of textformfield in flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language