플러터의 Stack 위젯은 여러개 위젯을 겹쳐서 사용할 수 있는 컨테이너 형 위젯 입니다.
Note:주요 매개변수
alignment: 자식 위젯들의 기본 정렬 속성을 정의 합니다. 기본값은 상위 왼쪽 부터 정렬되는 AlignmentDirectional.topStart
입니다. 그 이외에도 center
, bottomRight
등을 사용할 수 있습니다.
fit: 자석 위젯들이 자신의 기본 사이즈(StackFit.loose
)를 사용하거나 아니면 가능한 공간까지 채우는(.expand
) 설정입니다.
특정 위치가 없는 경우입니다.
non-positioned children |
Stack(
children: [
Container(
width: 350,
height: 350,
color: Colors.blue,
),
Container(
width: 300,
height: 300,
color: Colors.red,
),
Container(
width: 250,
height: 250,
color: Colors.green,
),
],
),
Result:
특정 위치를 Positioned
를 사용할 수 있습니다.
Stack(
children: <Widget>[
// Max Size Widget
Container(
height: 300,
width: 400,
color: Colors.blue,
),
Positioned(
top: 30,
right: 20,
child: Container(
height: 100,
width: 150,
color: Colors.red,
),
),
Positioned(
top: 30,
left: 20,
child: Container(
height: 100,
width: 150,
color: Colors.green,
),
),
],
),
Result:
"If you would thoroughly know anything, teach it to other."
- Tryon Edwards -