Answers for "how to add background color in textfield flutter"

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 add background color in textfield flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language