Answers for "why my labletext of formfield is white in color in flutter"

12

text fieldform color flutter

TextField(
  style: TextStyle(color: Colors.red),
  decoration: InputDecoration(fillColor: Colors.orange, filled: true),
)
Posted by: Guest on June-11-2020
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
0

flutter textfield label color

labelStyle: TextStyle(
	color: Colors.white,
)
Posted by: Guest on June-13-2020

Code answers related to "why my labletext of formfield is white in color in flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language