-
[Flutter] GoogleFonts 사용하기 (폰트 변경 하기)개발/Flutter 2023. 1. 12. 15:09
GoogleFonts
기본 시스템 글꼴 외 다양한 폰트를 간편히 사용하고 싶을때 사용해보면 좋을듯합니다.
모든 글꼴을 저장할 필요 없이 1,400개 이상의 글꼴을 사용할 수 있습니다.우선 pubspec.yaml 에 의존성을 추가 합니다.
google_fonts: ^3.0.1
사용법은 간단합니다.
Text( 'This is Google Fonts', style: GoogleFonts.amiko(), )
기존 Text widget의 style 에 추가 합니다.
Text( 'This is Google Fonts', style: GoogleFonts.amiko(fontSize: 20, color: Colors.black), ),
TextStyle 은 GoogleFonts 내부로 추가 합니다.
그리고, Theme에 추가해 모든 Text에 적용하는 방법이 있습니다.
final appTheme = ThemeData( primarySwatch: Colors.grey, canvasColor: Colors.white, textTheme: GoogleFonts.aladinTextTheme() )
해당 Theme를 App Theme에 추가하면 모든 Text에 적용하여 사용 가능합니다
[pub.dev] https://pub.dev/packages/google_fonts
'개발 > Flutter' 카테고리의 다른 글
[Flutter] FittedBox Widget 에 대해서... (컨텐츠 공간에 맞춤) (0) 2023.01.17 [Flutter] Container Widget 에 대하여 .. (0) 2023.01.13 [Flutter] Wrap widget 에 대하여... (0) 2023.01.11 [Dart/Flutter] Factory 생성자에 대하여 (0) 2023.01.10 [Flutter] freezed 사용하기 ! (Code Generator) (0) 2023.01.10