Flutter 라이트모드/다크모드 설정
·
Flutter
Flutter 에서는 라이트모드/다크모드를 지원해 준다. 좋다.. 색상 정의 우선 사용 할 색상을 정의해준다. Colors.dart라는 파일을 하나 생성해서 LightColors 클래스와 DarkColors 클래스를 만들어주었다. 상수값이고 전역적으로 접근해야할 클래스는 멤버를 static const로 작성해 준다. static으로 선언했기 때문에 인스턴스화없이 접근할 수 있고 const로 정적바인딩 되므로 런타임에서 값을 변경할 수 없어 안전하다. // Colors.dart import 'package:flutter/material.dart'; import 'package:get/get.dart'; class LightColors { // color define static const Color bas..
해니01_15
'플러터라이트모드' 태그의 글 목록