반응형
플러터에서 전체 스크린의 배경색을 설정하는 방법을 알아보겠다.
materialapp을 만들어주는 쪽에서 theme을 추가해주면 된다.
return MaterialApp(
// your other app initialization code
theme: ThemeData(scaffoldBackgroundColor: Colors.white),
);
각 화면에서 배경색 설정하는 방법은
이렇게 scaffold 밑에 backgroundcolor로 배경색을 설정해주면 된다.
void main() => runApp(new MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new MaterialApp(
title: 'Testing',
home: new Scaffold(
//Here you can set what ever background color you need.
backgroundColor: Colors.white,
),
);
}
}
반응형
'flutter' 카테고리의 다른 글
flutter container click (0) | 2022.06.18 |
---|---|
flutter bottom overflowed by pixels (0) | 2022.06.18 |
provider listview builder에 적용시 문제점 (0) | 2022.06.15 |
flutter quill editor provider 적용/ 저장했던 글 불러오기 (0) | 2022.06.14 |
table calendar flutter provider (1) | 2022.06.07 |