how to make your text font bold flutter code example
Example: flutter text style bold
Text(
'My Card Alert',
style: TextStyle(
fontWeight: FontWeight.bold
),
)
Text(
'My Card Alert',
style: TextStyle(
fontWeight: FontWeight.bold
),
)