While Android and iOS offer high quality system fonts, one of the most commonrequests from designers is to use custom fonts. For example, you may have acustom-built font from a designer, or maybe you downloaded a font fromGoogle Fonts.
Flutter works out of the box with custom fonts. You can apply fonts across anentire app or to individual Widgets.
Directions
- Import the font files
- Declare the font in the
pubspec.yaml
- Set a font as the default
- Use a font in a specific Widget
1. Import the font files
In order to work with a font, you need to import the font files into theproject. It is common practice to put font files in a fonts
or assets
folder at the root of a Flutter project.
For example, if you want to import the Raleway and Roboto Mono font files intoa project, the folder structure would look like this:
awesome_app/
fonts/
Raleway-Regular.ttf
Raleway-Italic.ttf
RobotoMono-Regular.ttf
RobotoMono-Bold.ttf
2. Declare the font in the pubspec.yaml
Now that you have a font to work with, you need to tell Flutter where tofind it. You can do so by including a font definition in the pubspec.yaml
.
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
pubspec.yaml option definitions
The family
determines the name of the font, which you use in thefontFamily
property of a TextStyle
object.
The asset
is a path to the font file, relative to the pubspec.yaml
file.These files contain the outlines for the glyphs in the font. When building theapp, these files are included in the app’s asset bundle.
A single font can reference many different files with different outline weightsand styles:
The
weight
property specifies the weight of the outlines in the file as aninteger multiple of 100, between 100 and 900. These values correspond to theFontWeight
and can be used in thefontWeight
property of aTextStyle
object.The
style
property specifies whether the outlines in the file areitalic
ornormal
. These values correspond to theFontStyle
and can be used in thefontStyleproperty of aTextStyle
object.
3. Set a font as the default
You have two options for how to apply fonts to text: as the default fontor only within specific Widgets.
To use a font as the default, set the fontFamily
property as part ofthe app’s theme
. The value provided to fontFamily
must match the family
name declared in the pubspec.yaml
.
MaterialApp(
title: 'Custom Fonts',
// Set Raleway as the default app font
theme: ThemeData(fontFamily: 'Raleway'),
home: MyHomePage(),
);
For more information on themes, please view the “Using Themes to share colorsand font styles” recipe.
4. Use the font in a specific Widget
If you want to apply the font to a specific Widget, such as a Text
Widget,provide a TextStyle
to the Widget.
In this example, you’ll apply the RobotoMono font to a single Text
Widget.Once again, the fontFamily
must match the family
name declared in thepubspec.yaml
.
Text(
'Roboto Mono sample',
style: TextStyle(fontFamily: 'RobotoMono'),
);
TextStyle
If a TextStyle
object specifies a weight or style for which is there is no exact font file, theengine uses one of the more generic files for the font and attempts toextrapolate outlines for the requested weight and style.
Complete example
Fonts
The Raleway and RobotoMono fonts were downloaded from GoogleFonts.
pubspec.yaml
name: custom_fonts
description: An example of how to use custom fonts with Flutter
dependencies:
flutter:
sdk: flutter
dev_dependencies:
flutter_test:
sdk: flutter
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
uses-material-design: true
main.dart
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Custom Fonts',
// Set Raleway as the default app font
theme: ThemeData(fontFamily: 'Raleway'),
home: MyHomePage(),
);
}
}
class MyHomePage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
// The AppBar uses the app-default Raleway font
appBar: AppBar(title: Text('Custom Fonts')),
body: Center(
// This Text Widget uses the RobotoMono font
child: Text(
'Roboto Mono sample',
style: TextStyle(fontFamily: 'RobotoMono'),
),
),
);
}
}