theme (2) 썸네일형 리스트형 [Flutter] Clone - 당근마켓4(theme) 이번에는 theme 에 대해서 알아보겠습니다. 개발환경 : 윈도우11, 안드로이드 스튜디오, flutter 3.0.1 폰트 적용 전후 화면은 아래와 같습니다. pubspec.yaml - 도현체를 다움받아서 아래 위치에 복사해서 넣고 폰트정보를 설정한다 fonts: - family: DoHyeon fonts: - asset: assets/fonts/BMDOHYEON_ttf.ttf ./src/apple_app.dart - getRouter(), beamRouter() 설정은 동일하게 적용하면 된다 // beamer 라우팅시 설정방법 MaterialApp beamRouter() { return MaterialApp.router( debugShowCheckedModeBanner: false, title: 'Ap.. [Flutter] Theme - ThemeData main build 전체 폰트 적용 - fontFamily: 'Dohyeon' headline3 만 적용 - TextStyle(fontFamily: 'Dohyeon') 모든 button 의 텍스트 색상 적용 - button: TextStyle(color: Colors.white) class AppleApp extends StatelessWidget { const AppleApp({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return MaterialApp.router( theme: ThemeData( primarySwatch: Colors.red, // fontFamily: 'Dohyeon', textTheme.. 이전 1 다음