lesnitsky / howtodothisinflutter

📄Flutter cheat sheet
MIT License
267 stars 21 forks source link

Custom fonts #6

Open lesnitsky opened 5 years ago

matnex-mix commented 4 years ago

Add the font files to your assets directory let's say

assets/fonts/NexaLight.ttf

Import the font in pubspec.yaml

flutter:
  fonts:
    - family: NexaLight
      fonts:
        - asset: fonts/NexaLight.ttf
        - asset: fonts/NexaLight-Bold.ttf
          weight: 700

Use it in your flutter application

Text(
  'Nexa Light sample',
  style: TextStyle(fontFamily: 'NexaLight'),
);