Flutter는 이미 만들어져 있는 widget을 원하는 위치에 붙여서 앱을 만든다. StatelessWidget과 statefulWidget으로 구분한다. [ StatelessWidget ] : 상태 변경을 하지 않는 위젯이다. -> 현재 상태(State)를 설정 할 필요가 없으며 자체적으로 새로고침(setState)을 하지도 않는다. class MyApp extends StatelessWidget { const MyApp({super.key}); // This widget is the root of your application. @override Widget build(BuildContext context) { return MaterialApp( title: 'Flutter Demo', theme:..