Flutter OverlayEntry 文本下划线问题解决方法
这可能是因为使用了默认的主题样式导致的。Flutter的默认主题样式中,链接文本会自动添加下划线。要取消下划线,可以在OverlayEntry中使用自定义的TextStyle,将decoration属性设置为none。例如:
OverlayEntry(
builder: (BuildContext context) {
return Container(
child: Text(
'Some text with no underline',
style: TextStyle(decoration: TextDecoration.none),
),
);
},
);
原文地址: https://www.cveoy.top/t/topic/mXpO 著作权归作者所有。请勿转载和采集!