인프런 커뮤니티 질문&답변
ThemeData 미적용
작성
·
556
답변 1
0
오준석
지식공유자
어두운 테마를 원하시는 거라면 canvasColor로 배경색을 textTheme에서 글자 색상을 조절하는 방법이 있습니다. 앱바는 appBarTheme 속성을 수정해야 하고 ThemeData에는 엄청 많은 여러 테마를 따로 설정하도록 되어 있습니다. 샘플코드를 제시해 드릴테니 참고하세요.
theme: ThemeData(
unselectedWidgetColor: Colors.white,
canvasColor: darkGray,
floatingActionButtonTheme:
Theme.of(context).floatingActionButtonTheme.copyWith(
backgroundColor: Colors.white,
foregroundColor: darkGray,
),
appBarTheme: Theme.of(context).appBarTheme.copyWith(
backgroundColor: darkGray,
),
textTheme: Theme.of(context).textTheme.apply(
bodyColor: Colors.white,
),
)






