Answers for "inputdecoration color flutter"

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
1

flutter inputdecoration placeholder color

decoration: InputDecoration(
	hintText: "Password",
    // place the color here
	hintStyle: TextStyle(fontSize: 2.0, color: Colors.redAccent),
    ...
)
Posted by: Guest on March-12-2021

Code answers related to "inputdecoration color flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language