flutter google fonts package code example
Example 1: google fonts for flutte
dependencies:
google_fonts: ^1.1.1
$ flutter pub get
Example 2: how to set font family in flutter
MaterialApp(
title: 'Custom Fonts',
theme: ThemeData(fontFamily: 'Raleway'),
home: MyHomePage(),
);
Example 3: flutter googlefonts.
Text(
'This is Google Fonts',
style: GoogleFonts.lato(
textStyle: Theme.of(context).textTheme.display1,
fontSize: 48,
fontWeight: FontWeight.w700,
fontStyle: FontStyle.italic,
),
),
Example 4: https://flutter.dev/custom-fonts/#from-packages
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