[Flutter] 버튼 생성하기
플러터 프로젝트를 생성하면 나오는 기본 생성 코드에 버튼을 추가해보자. return Scaffold( appBar: AppBar( // Here we take the value from the MyHomePage object that was created by // the App.build method, and use it to set our appbar title. title: Text(widget.title), ), body: Center( // Center is a layout widget. It takes a single child and positions it // in the middle of the parent. child: Column( // Column is also a layout wi..