how to apply font family in flutter code example
Example 1: add font in flutter
MaterialApp(
title: 'Fonts',
theme: ThemeData(fontFamily: 'Mukta'),
home: HomePage(),
);
In pubspec.yaml
fonts:
- family: Mukta
fonts:
- asset: assets/fonts/Mukta/Mukta-Regular.ttf
weight: 400
Example 2: flutter set default font family for whole app
MaterialApp(
title: 'Custom Fonts',
// Set Raleway as the default app font.
theme: ThemeData(fontFamily: 'Raleway'),
home: MyHomePage(),
);