作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想创建一个文本小部件来实现您在下面看到的内容:
我希望文本的背景颜色有一些额外的填充,但仅限于实际存在文本的地方。
目前,我必须在将文本小部件包装在容器小部件中进行选择(然后将背景颜色添加到第二条较短行的空白区域,这是我不想要的)。或者,我可以选择为文本的 textStyle 小部件使用背景颜色,但它不考虑高度(又名行高)。
有没有办法做到这一点?
最佳答案
您可以将 Paint
用于 background
的 TextStyle
:
Text(
'Random caption for this post1',
style: TextStyle(
fontWeight: FontWeight.bold,
background: Paint()..color = Colors.white
..strokeWidth = 17
..style = PaintingStyle.stroke,
),
textAlign: TextAlign.center,
)
结果:
关于flutter - 如何将填充添加到文本小部件的背景颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63208376/
我是一名优秀的程序员,十分优秀!