
스마트폰 상하단에 요소가 가려지지 않는 영역
.
.
.
body: Container(
color: Colors.black,
child: Column(
children: colors.map((e) => Container(
width: 50,
height: 50,
color: e,
)
).toList(),
),
)

body: SafeArea(
child: Container(
color: Colors.black,
child: Column(
children: colors.map((e) => Container(
width: 50,
height: 50,
color: e,
)
).toList(),
),
),
)
SafeArea위젯을 사용하면 요소가 시계와 아랫 부분에 가려지지 않는다.