How to underline text in flutter

后端 未结 5 791
再見小時候
再見小時候 2020-12-23 08:32

How to underline text in flutter inside Text widget?

I cannot seem to find underline inside fontStyle property of TextStyle

5条回答
  •  伪装坚强ぢ
    2020-12-23 09:10

    You can use TextDecoration in style to underline a given text.

    For example

    Text(
        "Your text here",
        style: TextStyle(
            decoration: TextDecoration.underline),
        )
    )
    

提交回复
热议问题