我尝试将一些字体添加到我的应用程序,并且每当我将它们添加到pubsbec.yaml中时,它都会给出“获取程序包”,然后停止但没有结果。 当我尝试添加另一个软件包时,也会发生同样的情况。 另一件事,当我运行应用程序说
Error detected in pubspec.yaml:
Error on line 66, column 4: Expected a key while parsing a block mapping.
╷
66 │ fonts:
│ ^
╵
Please correct the pubspec.yaml file
“注意:我检查了空格和拼写,它们是正确的” 我该怎么做呢?
pubspec文件的一部分
flutter:
uses-material-design: true
fonts:
- family: Ranga
fonts:
- asset: fonts/Ranga-Regular.ttf
- asset: fonts/Ranga-Bold.ttf
style: Bold
weight: 700
这是我使用字体的方式:
Text("Recipe Name",
style: TextStyle(
color: Colors.black54,
fontSize: 30,
fontWeight: FontWeight.w700,
fontFamily: "Ranga"
),