728x90
반응형
[flutter] Default of googleFonts & dark theme & text color
구글 폰트를 기본으로 지정하고, 테마를 dark
글자 색상은 흰색으로 지정하는 코드입니다.
Widget build(BuildContext context) {
return MaterialApp(
title: "Word",
theme: ThemeData(
//위젯 전경색상
accentColor: Colors.red,
primaryColor: Colors.pink,
// 밝기는 어둡게
brightness: Brightness.dark,
textTheme: GoogleFonts.juaTextTheme(
Theme.of(context)
.textTheme
.apply(bodyColor: Colors.white, displayColor: Colors.white),
),
),
home: Home(),
);
}
}
300x250
반응형
'Flutter' 카테고리의 다른 글
[iOS & android App] WordNote 단어장 (0) | 2021.08.02 |
---|---|
[flutter] Change Package Name & Bundle ID (0) | 2021.07.23 |
Uploading Image to Firebase Storage in Flutter (Android & iOS) (0) | 2021.06.26 |
M1 MacBook Flutter CocoaPods error (0) | 2021.06.14 |
Flutter doctor - Android Studio (not installed) windows 해결 (0) | 2021.06.05 |