How to underline text in flutter

后端 未结 5 786
再見小時候
再見小時候 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:33

    for example

    Text(
      "Terms and Condition",
      style: TextStyle(
        decoration:
            TextDecoration.underline,
        height: 1.5,
        fontSize: 15,
        fontWeight: FontWeight.bold,
        fontFamily: 'Roboto-Regular',
      ),
    ),
    

提交回复
热议问题