【发布时间】:2021-09-15 22:21:07
【问题描述】:
As 显示给定的图像在对文本应用下划线装饰文本样式后,它在 Flutter 2.2 中显示文本上方而不是下方。
TextButton(
onPressed: () {},
child: Text(
getLocalValue(context, txtTermsNConditions),
style: TextStyle(
fontSize: 12.sp,
fontWeight: fwMedium,
color: Color(clrPrimary),
decoration: TextDecoration.underline),
),
)
【问题讨论】:
-
我试过你的代码;它按预期显示。
标签: flutter underline text-decorations flutter2.0 textstyle