프로그래밍/Flutter & Dart12 [Flutter] Font 적용하기 / Noto Sans CJK KR 공식 다운로드 1. 먼저 사용할 폰트를 다운로드한다. 나는 Noto Sans CJK KR을 사용했는데, 아래 링크에서 다운로드할 수 있다. https://www.google.com/get/noto/#/family/noto-sans-kore Google Noto Fonts When text is rendered by a computer, sometimes characters are displayed as “tofu”. They are little boxes to indicate your device doesn’t have a font to display the text. Google has been developing a font family called Noto, which aims to support all www... 2021. 8. 15. [Flutter] SharedPreferences 사용해 key-value 데이터 저장하기 적은 양의 key-value 데이터를 저장할 때 SharedPreferences를 사용할 수 있다. 웹의 캐시, 아이폰의 UserDefaults와 같은 개념이라고 한다. 그래서 앱을 종료한 후에도 저장된 값을 유지한다. 사용 방법 1. 의존성 추가 dependencies: flutter: sdk: flutter shared_preferences: ^2.0.6 // 210813 기준 최신버전 * 아래 링크에서 버전 확인 가능 https://pub.dev/packages/shared_preferences/install 2. 데이터 저장 // Get SharedPreferences final prefs = await SharedPreferences.getInstance(); // 'counter'라는 key로.. 2021. 8. 13. 이전 1 2 3 다음