Answers for "textformfield line color change in 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
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

Code answers related to "textformfield line color change in flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language