Flutter - Custom Font not displaying

前端 未结 12 2156
感动是毒
感动是毒 2021-01-03 20:11

This is an excerpt of my pubspec.yaml file:

flutter:
  uses-material-design: true
  fonts:
   - family: Coiny
     fonts:
       - asset: fonts/Coiny-Regular         


        
12条回答
  •  暖寄归人
    2021-01-03 20:36

    Font declaration alignment is not as per flutter pubspec.yaml. It should be like below.

    fonts:
          - family: Coiny
            fonts:
              - asset: fonts/Coiny-Regular.ttf
    

    You can check out it here.

提交回复
热议问题