如何在 Flutter 网络应用程序中使用可用的浏览器字体

How to use available browser fonts in a Flutter web app

我想使用浏览器中可用的字体,例如所有标准字体系列。但是指定字体系列并没有改变我的字体。

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'flutter web app',
      theme: ThemeData(
        primarySwatch: Colors.blue,
        textTheme: TextTheme(bodyText2: TextStyle(fontFamily: 'Courier New'))

      ),
      home: HomeView(),
    );
  }
}

如何在不下载字体并将其添加到项目的情况下使用可用字体?

可以使用Google字体包

https://pub.dev/packages/google_fonts