오늘은 StatelessWidget과 StatefulWidget에 대해 알아보겠습니다. 먼저 실습한 코딩 먼저 보여드리겠습니다. *해당 실습은 안드로이드 스튜디오에서 진행하였습니다. 안드로이드 스튜디오, fluter 설치방법 ------>https://for-it-study.tistory.com/3 import 'package:flutter/material.dart'; void main() => runApp(MyApp()); class MyApp extends StatelessWidget { // This widget is the root of your application. @override Widget build(BuildContext context) { return MaterialApp( title..