text style italic flutter code example
Example 1: flutter text style bold
Text(
'My Card Alert',
style: TextStyle(
fontWeight: FontWeight.bold
),
)
Example 2: italic text flutter
Text(
"Welcome to the present, we're running a real nation.",
style: TextStyle(fontStyle: FontStyle.italic),
)