Internal: b/165577829
I'm using Text.rich with underlined option to make underlined text. It works, but it's possible to add space between the word and underline line? Or make the line more bolder ?
Container(
padding: EdgeInsets.only(
bottom: 3, // space between underline and text
),
decoration: BoxDecoration(
border: Border(bottom: BorderSide(
color: Colors.white, // Text colour here
width: 1.0, // Underline width
))
),
child: Text(
"Text Here",
style: TextStyle(
color: Colors.white, // Text colour here
),
),
)