1.layout widget을 선택한다. 2.위젯을 생성한다. Text('hello world'), Image.asset( 'images/lake.jpg', fit: BoxFit.cover, ), Icon( Icons.start, color: Colors.red[500], ), 3.위젯에 layout위젯을 추가한다. 모든 레이아웃은 다음중 하나가 있다. -child: 하나의 자식을 받는 것(Container, Center) -children: 위젯 목록을 받는 것(Row, Column, ListView, Stack) Center( child: Text('hello world'), ), 4.페이지에 layout 위젯 추가하기 Flutter 앱 자체는 위젯이고 대부분의 위젯에는 build 메서드가 존재한다...