make text bold in flutter code example

Example 1: flutter text style bold

Text(
  'My Card Alert',
  style: TextStyle(
  	fontWeight: FontWeight.bold
  ),
)

Example 2: flutter font bold

Text(
  'Some text',
  style: TextStyle(
    fontSize: 24,
    fontWeight: FontWeight.bold),
)

Example 3: how to style text in flutter

Text(
'text'
style: TextStyle(),
),

Example 4: how to set font family in flutter

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

Tags:

Dart Example