Answers for "underline text flutter color"

17

underline text in flutter

Text(
  'Hello world',
  style: TextStyle(
    decoration: TextDecoration.underline,
  ),
)
Posted by: Guest on July-05-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
0

underline text flutter color

Text("Your text",
      style: TextStyle(
             color: Colors.white
             decoration: TextDecoration.underline,
             decorationColor: Colors.yellow,
          ))
Posted by: Guest on April-11-2022
0

text underline flutter

Text(
  'Hello world',
  style: TextStyle(
    decoration: TextDecoration.underline,
  ),
)
Posted by: Guest on March-08-2021

Code answers related to "underline text flutter color"

Code answers related to "Dart"

Browse Popular Code Answers by Language