How to underline text in flutter inside Text widget?
I cannot seem to find underline inside fontStyle property of TextStyle
You do it by applying decoration: TextDecoration.underline to TextStyle of a Text.
With Theme example:
Text(
"text",
style: Theme
.of(context)
.accentTextTheme
.subhead
.copyWith(decoration: TextDecoration.underline),
)
Basic example:
Text(
"text",
style: TextStyle(decoration: TextDecoration.underline),
)