Flutter/05 Theme (1) 썸네일형 리스트형 [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 다음