Answers for "textfield color flutter"

C#
5

change border color of TextField in flutter

TextFormField(
        decoration: InputDecoration(
          labelText: "Resevior Name",
          fillColor: Colors.white,
          focusedBorder:OutlineInputBorder(
            borderSide: const BorderSide(color: Colors.white, width: 2.0),
            borderRadius: BorderRadius.circular(25.0),
          ),
        ),
      )
Posted by: Guest on November-03-2020
3

flutter text form field change underline color

decoration: InputDecoration(        
  enabledBorder: UnderlineInputBorder(      
    borderSide: BorderSide(color: theColor),   
  ),  
  focusedBorder: UnderlineInputBorder(
    borderSide: BorderSide(color: theColor),
  ),
  border: UnderlineInputBorder(
    borderSide: BorderSide(color: theColor),
  ),
)
Posted by: Guest on September-23-2020
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
0

flutter textfield label color

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

color textfield text flutter

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

Code answers related to "textfield color flutter"

C# Answers by Framework

Browse Popular Code Answers by Language