본문 바로가기
TIL

20230820 TIL

by 김빵그 2023. 8. 20.

Today 요약

[] 프로그래머스 코딩테스트 1문제

[] flutter강의 5개

 


배운 점

1) flutter googleFont

 

Browse Fonts - Google Fonts

Making the web more beautiful, fast, and open through great typography

fonts.google.com

MaterialApp(
	theme : ThemeData(
    	textTheme:GoogleFonts.nanumMyeonghTextTheme(),
    )
)
Text(
    "폰트수정",
        style: GoogleFonts.nanumGothic(
          textStyle: const TextStyle(
            fontSize: Sizes.size24,
            fontWeight: FontWeight.w700,
          ),
    ),
),
  • 전체적인 폰트를  적용하려면 MaterialApp에서 개별적 폰트 적용시엔 각각의 폰트에 적용할 수도 있다

2) flutter typography

  • 특정 구글폰트로 지정하지 않을시 유용
textTheme: Typography.blackMountainView,

3) DarkMode

import 'package:flutter/material.dart';

bool isDarkMode(BuildContext context) =>
    MediaQuery.of(context).platformBrightness == Brightness.dark;
final isDark = isDarkMode(context);

isDark? red : blue
  • 다크모드이면 레드 아니면 블루 이런식으로 하드코딩 할 수 있지만 
  • 웬만한 컬러는 main에서 지정해주는게 좋다! 

 


주말 ..뿌시기 ! 거의 다크모드만 뿌시기!

'TIL' 카테고리의 다른 글

20230822 TIL  (0) 2023.08.22
20230821 TIL  (0) 2023.08.21
20230819 TIL  (0) 2023.08.19
20230816 TIL  (0) 2023.08.16
20230808 TIL  (0) 2023.08.08