size text flutter\ code example
Example 1: flutter font bold
Text(
'Some text',
style: TextStyle(
fontSize: 24,
fontWeight: FontWeight.bold),
)
Example 2: TextStyle underline flutter
Text(
'Hello world',
style: TextStyle(
decoration: TextDecoration.underline,
),
)