flutter set 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),
)

Example 3: how to set font family in flutter

MaterialApp(
  title: 'Custom Fonts',
  // Set Raleway as the default app font.
  theme: ThemeData(fontFamily: 'Raleway'),
  home: MyHomePage(),
);

Example 4: flutter font family

final String? fontFamily;

Tags:

Misc Example