flutter text default font family code example
Example 1: flutter font bold
Text(
'Some text',
style: TextStyle(
fontSize: 24,
fontWeight: FontWeight.bold),
)
Example 2: flutter text default font family
Text(
'Text',
fontFamily: 'Hind',
fontSize: 20,
fontWeight: FontWeight.w500),
)