TextButton (1) 썸네일형 리스트형 [Flutter] 플러터 버튼 종류 [Flutter] 플러터 버튼의 종류(4가지) class MyHomePage extends StatelessWidget { final String title; //화면상단에 표시될 제목. final이 붙어 더이상 변경되지 않는다. MyHomePage({required this.title}); //required: 꼭 선언해주어야 하는 값 @override Widget build(BuildContext context) { return Scaffold( //앱 화면이 기본적으로 갖춘 기능을 선언한 위젯 appBar: AppBar( // Here we take the value from the MyHomePage object that was created by // the App.build method, an.. 이전 1 다음