1.Row 위젯 Row 위젯을 사용하면 한 줄(행)에 여러가지를 보이게 만들 수 있다. body에 Row 위젯을 추가한다. Row 위젯에 child가 하나만 있어야만 하는 게 아니기 때문에 child가 아닌 children을 사용한다. children의 리턴 타입은 이다. [] 로 감싸진 것을 통해 알 수 있듯이 여기에 다양한 위젯들을 넣을 수 있다. body: Row( mainAxisAlignment: MainAxisAlignment.spaceEvenly, crossAxisAlignment: CrossAxisAlignment.start, children: [ Text('hello, world'), FlatButton( onPressed: (){}, color: Colors.amber, child: Te..