标签: android ios flutter
如何在整个flutter应用程序中应用自定义字体系列?
答案 0 :(得分:0)
解决方案:要将字体应用于整个flutter应用程序,只需在主函数中添加以下代码
void main() { runApp(new MaterialApp( home: new SplashScreen(), theme: new ThemeData( fontFamily: 'GoogleSans' ), )); }