flutterdartflutter-layout

How to make bolder underline text in flutter


After reading flutter documentation I got information about how to underline text. But My problem is, I needed a simple text style with bolder underline.


Solution

  • Try adding the decoration in TextStyle.

    Text(
      'Flutter Developer',
       style: TextStyle(          
         decoration: TextDecoration.underline,
         decorationThickness: 4,
       ),
     );