Flutter로 겹치는 UI를 만들 때 가장 많이 쓰는 위젯이 Stack입니다.여기에 Positioned 위젯을 함께 쓰면, 원하는 위치에 자유롭게 배치할 수 있죠.✅ 1. Stack 기본 구조Stack은 자식 위젯들을 위로 쌓아올리는 레이아웃입니다.HTML로 치면 position: absolute과 비슷한 개념이죠.Stack( children: [ Container(width: 200, height: 200, color: Colors.blue), Container(width: 150, height: 150, color: Colors.red), Container(width: 100, height: 100, color: Colors.yellow), ],)✔️ 위에서부터 순서대로 쌓입니다..