flutter change font code example
Example 1: flutter font bold
Text(
'Some text',
style: TextStyle(
fontSize: 24,
fontWeight: FontWeight.bold),
)
Example 2: flutter change android default font size
/// Android has different 'textscalefactor' settings, like:
/// 'Small: 0.85', 'Default: 1.0', 'Large: 1.15', 'Largest: 1.3'
/// To make sure the text in your app stays as you intended it to,
/// use the MediaQuery Widget to overwrite the system default:
@override
Widget build(BuildContext context) {
return MediaQuery(
data: MediaQuery.of(context).copyWith(textScaleFactor: 1.15), // Large
child: Scaffold(),
),
};
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 add custom fonts
flutter:
fonts:
- family: Proxima
fonts:
- asset: lib/fonts/ProximaNova-Regular.otf
In case you are using an emulator, go to the terminal and type "flutter clean" then "flutter pub get" to update the font used.