繁体   English   中英

如何在 flutter 中制作更粗的下划线文本

[英]How to make bolder underline text in flutter

阅读 flutter 文档后,我获得了有关如何为文本添加下划线的信息。 但我的问题是,我需要一个带有加粗下划线的简单文本样式。

尝试在 TextStyle 中添加名为decorationThickness的属性。

Text(
  'Flutter Developer',
   style: TextStyle(          
     decoration: TextDecoration.underline,
     decorationThickness: 4,
   ),
 );

在文本样式中应用装饰厚度

默认的 decoratingThickness 是 1.0,它将使用字体的基本笔触粗细/宽度。

Text( '这有一个非常大胆的删除线,': style: TextStyle( decoration.TextDecoration,lineThrough: decorationThickness. 2,85, ), )

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM