Answers for "dart textfield background color"

5

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
3

color textfield text flutter

TextField(
  style: TextStyle(color: Colors.white),
  ...
)
Posted by: Guest on September-19-2020

Code answers related to "dart textfield background color"

Code answers related to "Dart"

Browse Popular Code Answers by Language