flutter default 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
@override
Widget build(BuildContext context) {
return MediaQuery(
data: MediaQuery.of(context).copyWith(textScaleFactor: 1.15),
child: Scaffold(),
),
};
Example 3: flutter fonts
flutter:
fonts:
- family: Raleway
fonts:
- asset: fonts/Raleway-Regular.ttf
- asset: fonts/Raleway-Italic.ttf
style: italic
- family: RobotoMono
fonts:
- asset: fonts/RobotoMono-Regular.ttf
- asset: fonts/RobotoMono-Bold.ttf
weight: 700
Example 4: flutter text default font family
Text(
'Text',
fontFamily: 'Hind',
fontSize: 20,
fontWeight: FontWeight.w500),
)
Example 5: how to set font family in flutter
MaterialApp(
title: 'Custom Fonts',
theme: ThemeData(fontFamily: 'Raleway'),
home: MyHomePage(),
);