-1

在此处输入图像描述如显示给定的图像在对文本应用下划线装饰文本样式后,它在 Flutter 2.2 中显示文本上方而不是下方的行。

 TextButton(
              onPressed: () {},
              child: Text(
                getLocalValue(context, txtTermsNConditions),
                style: TextStyle(
                    fontSize: 12.sp,
                    fontWeight: fwMedium,
                    color: Color(clrPrimary),
                    decoration: TextDecoration.underline),
              ),
            )
4

3 回答 3

0

style: TextStyle(decoration: TextDecoration.overline)会做的伎俩看到这个链接了解更多信息。

于 2021-07-05T09:52:43.377 回答
0

您可以使用快捷方式,只需使用 aStack并在其中放置Text一个DividerWidget,然后根据您的要求给出位置即可。

于 2021-07-05T05:22:24.967 回答
0

这是我使用的字体的问题,使用另一种字体已解决。

于 2021-12-01T10:33:51.337 回答