728x90
반응형
제목 처럼 GoogleFonts as default fonts in flutter app 을 적용하는 방법입니다.
공부하다가 기록으로 남겨봅니다.
먼저 pubspec.yaml에 google_fonts를 추가합니다.
https://pub.dev/packages/google_fonts
그리고, 아래의 MaterialApp ThemeData에 Google Theme를 적용합니다.
font는 원하시는것으로 변경하시면 됩니다.
MaterialApp(
theme:ThemeData(
textTheme: GoogleFonts.robotoTextTheme(
Theme.of(context).textTheme,
),
);
300x250
반응형
'Flutter' 카테고리의 다른 글
flutter 공부 : shrinkWrap 속성 (2) | 2023.12.23 |
---|---|
flutter / ERROR ) Unable to boot device because it cannot be located on disk (갱신) (0) | 2023.12.16 |
flutter error message(Flutter/Release.xcconfig) (0) | 2023.09.26 |
Flutter 화폐단위 넣고 천단위 적용해보자. (55) | 2023.06.17 |
[Flutter] Error: Dart library 'dart:ui' is not available on this platform (0) | 2023.05.06 |