美文网首页
Flutter Text文本删除线、下划线设置

Flutter Text文本删除线、下划线设置

作者: 逆光_初见 | 来源:发表于2021-04-15 15:52 被阅读0次
Text(
      "¥145",
      style: TextStyle(
        //中间删除线 TextDecoration.lineThrough
        //底部下划线TextDecoration.underline
        //顶部上划线 TextDecoration.overline
        decoration: TextDecoration.lineThrough,
        fontSize: 14,
        color: Colors.grey,
      )

相关文章

网友评论

      本文标题:Flutter Text文本删除线、下划线设置

      本文链接:https://www.haomeiwen.com/subject/ppodlltx.html