본문 바로가기
Flutter

[flutter] Default of googleFonts & dark theme & text color

by kage2k 2021. 7. 10.
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
반응형