flutter text style bold code example
Example 1: flutter text style bold
Text(
'My Card Alert',
style: TextStyle(
fontWeight: FontWeight.bold
),
)
Example 2: how to style text in flutter
Text(
'text'
style: TextStyle(),
),
Text(
'My Card Alert',
style: TextStyle(
fontWeight: FontWeight.bold
),
)
Text(
'text'
style: TextStyle(),
),