【Flutter】google_fonts フォントの導入

Flutter

google_fontsとは

fonts.google.comのフォントを使用するための Flutter パッケージです。

google_fonts | Flutter Package
A Flutter package to use fonts from fonts.google.com. Supports HTTP fetching, caching, and asset bundling.

使い方

TextのStyleに付与する

Text(
  'This is Google Fonts',
  style: GoogleFonts.lato(),
)

TextThemeに設定する

return MaterialApp(
  theme: ThemeData(
    textTheme: GoogleFonts.latoTextTheme(Theme.of(context).textTheme),
  ),
);

Buy me a coffee!

Flutterアプリ開発
シェアする
sogaをフォローする
タイトルとURLをコピーしました