TextButton()body: SizedBox( child: TextButton( // TextButton onPressed: () {}, child: Text('Button', style: TextStyle( fontSize: 30, )))),- 기본 형식은 위와 같다. - onPressed()에는 버튼 클릭시 동작 시키고자 하는 함수명을 넣는다.- 버튼을 비활성화 시킬 때는 onPressed에 null 값을 넣어준다.- 버튼의 스타일은 style: ButtonStyle()로 지정해준다.ElevatedButton()body: SizedBox( ..