Flutter 3rd Study
ยท
๐ป Programming Language/Flutter-Dart
StatefulWidgetstateful ์ ์ด์ฉํด ์ํ๋ฅผ ๊ฐ์ง๋ ์์ ฏ์ ๋ง๋ค ์ ์๋ค. import 'package:flutter/material.dart'; void main() { runApp(const MyApp2()); } class MyApp2 extends StatefulWidget { const MyApp2({Key? key}) : super(key: key); @override State createState() => _MyApp2State(); } class _MyApp2State extends State { @override Widget build(BuildContext context) { return MaterialApp( title: 'Flutter Demo&..