Stack(
children: <Widget>[
Positioned(
top: 30,
left: 30,
height:250,
width: 250,
child: Container(
width: 150,
height: 150,
color: Colors.green[300],
child: Text(
'Green',
style: TextStyle(
color: Colors.white,
fontSize: 20
),
),
),
),
],
),
그냥 stack을 쌓으면 아래에 있는 위젯의 버튼을 클릭할 수 없음. positioned로 쌓으면 아래에 보이는 위젯에 이벤트를 가할 수 있음.
참고 :: https://medium.flutterdevs.com/stack-and-positioned-widget-in-flutter-3d1a7b30b09a