📜  更改应用字体颤动 - Dart 代码示例

📅  最后修改于: 2022-03-11 14:48:09.040000             🧑  作者: Mango

代码示例1
MaterialApp(
     title: 'Custom Fonts',
     // Set Raleway as the default app font.
     theme: ThemeData(fontFamily: 'Raleway'),
     home: MyHomePage(),
   );