flutter 文字背景色
Text(
'我的背景色是红色的',
style: TextStyle(
// 创建 paint 对象,设置 color 属性为想要的颜色
background: Paint()..color = Colors.red
),
)
Text(
'我的背景色是红色的',
style: TextStyle(
// 创建 paint 对象,设置 color 属性为想要的颜色
background: Paint()..color = Colors.red
),
)