-1

enter image description hereAs showing the given image After applying underline decoration text style to the text it shows line above text instead of below in flutter 2.2.

 TextButton(
              onPressed: () {},
              child: Text(
                getLocalValue(context, txtTermsNConditions),
                style: TextStyle(
                    fontSize: 12.sp,
                    fontWeight: fwMedium,
                    color: Color(clrPrimary),
                    decoration: TextDecoration.underline),
              ),
            )
Brinda Rathod
  • 2,693
  • 1
  • 20
  • 32

3 Answers3

0

You can do with a shortcut just use a Stack and place both Text and a Divider Widget in it and gave then position according to your Requirements that's all.

Lang Minh Nguyên
  • 3,648
  • 4
  • 10
  • 31
Farhan Aslam
  • 31
  • 1
  • 6
0

style: TextStyle(decoration: TextDecoration.overline) will do the trick see this link for more information.

0

That was a problem with fonts I have used, using another font it has been resolved.

Brinda Rathod
  • 2,693
  • 1
  • 20
  • 32