반응형
SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle.light);
이 코드를 Build에 작성해주면 된다.
@override
Widget build(BuildContext context) { // hotreload는 build만 새로고침이니까,
SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle.light);
return Scaffold(
body: PageView(
),
);
}
}
반응형
'Flutter > Flutter 기본' 카테고리의 다른 글
[Flutter] state를 상위트리에서 관리하기 (4) | 2023.04.20 |
---|---|
[Flutter] 이미지, 폰트 등록 (0) | 2023.04.19 |
[Flutter] Column과 Row에 대하여(Axis Alignment) (0) | 2023.04.06 |
[Flutter] stless로 코드 정리하기 (0) | 2023.04.05 |
[Flutter] asset추가하기(이미지 사용하기) (0) | 2023.04.05 |