**이 페이지에서 알 수 있는 내용 このページからわかること
- Scaffold
- appBar
- body**
main.dart
...
...
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Flutter Labo'),
),
body: Center(
child: Stack(
alignment: Alignment.center, // stack 위젯 안 요소들 정렬
children: [
Container(
width: 200,
height: 300,
color: Colors.blue,
),
Container(
width: 100,
height: 100,
color: Colors.red,
),
],
),
),
);
}
}
