Flutter Text 去掉黄色下划线

Flutter 中如果没有使用Material的话Text会有黄色的下划线,
在这里插入图片描述
解决方法:
Text 样式style 中加入属性decoration: TextDecoration.none 如下:

Text(
              '加载中',
              style: TextStyle(
                  fontSize: 17,
                  color: Color(0xff3c3c3c),
                  decoration: TextDecoration.none),
            )

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/lxd_love_lgc/article/details/107038794