{"id":25668,"date":"2024-10-26T13:51:28","date_gmt":"2024-10-26T13:51:28","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=25668"},"modified":"2024-11-26T08:00:20","modified_gmt":"2024-11-26T08:00:20","slug":"%ed%94%8c%eb%9f%ac%ed%84%b0-%ea%b0%95%ec%a2%8c-8-2-main-dart-%ed%8c%8c%ec%9d%bc%ec%9d%98-%ea%b8%b0%eb%b3%b8-%ec%bd%94%eb%93%9c-%ea%b5%ac%ec%84%b1%ed%95%98%ea%b8%b0","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/25668\/","title":{"rendered":"\ud50c\ub7ec\ud130 \uac15\uc88c: 8.2 main.dart \ud30c\uc77c\uc758 \uae30\ubcf8 \ucf54\ub4dc \uad6c\uc131\ud558\uae30"},"content":{"rendered":"<p><body><\/p>\n<p>\ud50c\ub7ec\ud130(Flutter)\ub294 \uad6c\uae00\uc5d0\uc11c \uac1c\ubc1c\ud55c \uc624\ud508 \uc18c\uc2a4 UI \uc18c\ud504\ud2b8\uc6e8\uc5b4 \uac1c\ubc1c \ud0a4\ud2b8(SDK)\ub85c, \ubaa8\ubc14\uc77c, \uc6f9, \ub370\uc2a4\ud06c\ud1b1 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \ube60\ub974\uac8c \uad6c\ucd95\ud560 \uc218 \uc788\uac8c \ud574\uc90d\ub2c8\ub2e4. \ud50c\ub7ec\ud130\uc758 \ub9e4\ub825 \uc911 \ud558\ub098\ub294 \ud558\ub098\uc758 \ucf54\ub4dc\ubca0\uc774\uc2a4\ub85c \uc5ec\ub7ec \ud50c\ub7ab\ud3fc\uc5d0\uc11c \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uad6c\ucd95\ud560 \uc218 \uc788\ub2e4\ub294 \uc810\uc785\ub2c8\ub2e4. \uc774\ubc88 \uac15\uc88c\uc5d0\uc11c\ub294 \ud50c\ub7ec\ud130 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc758 \uc911\uc2ec\uc774 \ub418\ub294 <code>main.dart<\/code> \ud30c\uc77c\uc758 \uae30\ubcf8 \ucf54\ub4dc \uad6c\uc131\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc54c\uc544\ubcf4\uaca0\uc2b5\ub2c8\ub2e4.<\/p>\n<h2>1. main.dart \ud30c\uc77c\uc758 \uc5ed\ud560<\/h2>\n<p>\n<code>main.dart<\/code> \ud30c\uc77c\uc740 \ud50c\ub7ec\ud130 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc758 \uc9c4\uc785\uc810(entry point)\uc785\ub2c8\ub2e4. \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc774 \uc2e4\ud589\ub418\uba74 \uac00\uc7a5 \uba3c\uc800 \uc2e4\ud589\ub418\ub294 \ud30c\uc77c\ub85c, \uc774 \ud30c\uc77c \ub0b4\uc5d0\uc11c \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc758 \uc8fc\uc694 \uad6c\uc870\uc640 UI\ub97c \uc815\uc758\ud569\ub2c8\ub2e4.<br \/>\n        <br \/>\n<strong>\uc8fc\uc694 \uc5ed\ud560:<\/strong><\/p>\n<ul>\n<li>\uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc758 \uc124\uc815 \ubc0f \ucd08\uae30\ud654<\/li>\n<li>\ucd5c\uc0c1\uc704 \uc704\uc82f\uc758 \uad6c\uc131<\/li>\n<li>\ub8e8\ud2b8 \uc704\uc82f\uc758 \uc120\uc5b8<\/li>\n<\/ul>\n<h3>1.1 \uae30\ubcf8 \uad6c\uc870<\/h3>\n<p>\uae30\ubcf8\uc801\uc778 <code>main.dart<\/code> \ud30c\uc77c\uc740 \ub2e4\uc74c\uacfc \uac19\uc740 \uad6c\uc870\ub85c \uc2dc\uc791\ud569\ub2c8\ub2e4:<\/p>\n<pre>\n        <code>\n        import 'package:flutter\/material.dart';\n\n        void main() {\n            runApp(MyApp());\n        }\n\n        class MyApp extends StatelessWidget {\n            @override\n            Widget build(BuildContext context) {\n                return MaterialApp(\n                    title: '\ud50c\ub7ec\ud130 \uac15\uc88c',\n                    home: Scaffold(\n                        appBar: AppBar(\n                            title: Text('\uba54\uc778 \ud398\uc774\uc9c0'),\n                        ),\n                        body: Center(\n                            child: Text('\uc548\ub155\ud558\uc138\uc694, \ud50c\ub7ec\ud130!'),\n                        ),\n                    ),\n                );\n            }\n        }\n        <\/code>\n        <\/pre>\n<h2>2. \ucf54\ub4dc \uad6c\uc131 \uc694\uc18c<\/h2>\n<p>\uc704\uc758 \uc608\uc81c \ucf54\ub4dc\ub97c \ubd84\uc11d\ud558\uc5ec \uac01 \ubd80\ubd84\uc758 \uc5ed\ud560\uc744 \uc0b4\ud3b4\ubcf4\uaca0\uc2b5\ub2c8\ub2e4.<\/p>\n<h3>2.1 \ud544\uc694\ud55c \ud328\ud0a4\uc9c0 \uc784\ud3ec\ud2b8<\/h3>\n<p>\ud50c\ub7ec\ud130\uc758 \uae30\ub2a5\uc744 \uc0ac\uc6a9\ud558\uae30 \uc704\ud574 \ud544\uc694\ud55c \ud328\ud0a4\uc9c0\ub97c \uc784\ud3ec\ud2b8\ud569\ub2c8\ub2e4. <code>flutter\/material.dart<\/code> \ud328\ud0a4\uc9c0\ub294 Material Design UI \uad6c\uc131 \uc694\uc18c\ub97c \uc81c\uacf5\ud558\uba70, \uc774\ub97c \ud1b5\ud574 \uac04\ud3b8\ud558\uac8c \ub77c\uc6b0\ud305 \ubc0f \uc0c1\ud0dc \uad00\ub9ac\ub97c \ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<h3>2.2 main() \ud568\uc218<\/h3>\n<p>\ud50c\ub7ec\ud130 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc758 \uc9c4\uc785\uc810\uc778 <code>main()<\/code> \ud568\uc218\ub294 <code>runApp()<\/code> \ud568\uc218\ub97c \ud1b5\ud574 \ub8e8\ud2b8 \uc704\uc82f\uc744 \uc2e4\ud589\ud569\ub2c8\ub2e4. \uc5ec\uae30\uc11c\ub294 <code>MyApp<\/code> \ud074\ub798\uc2a4\ub97c \uc778\uc2a4\ud134\uc2a4\ud654\ud558\uc5ec \uc2e4\ud589\ud558\uace0 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<h3>2.3 StatelessWidget<\/h3>\n<p><code>MyApp<\/code> \ud074\ub798\uc2a4\ub294 <code>StatelessWidget<\/code>\uc744 \uc0c1\uc18d\ubc1b\uc2b5\ub2c8\ub2e4. \uc774\ub294 \uc0c1\ud0dc\uac00 \uc5c6\ub294 \uc704\uc82f\uc744 \uc758\ubbf8\ud558\uba70, UI\ub97c \uadf8\ub9b4 \ub54c \uc0ac\uc6a9\ub418\ub294 \ub370\uc774\ud130\uac00 \ubcc0\ud558\uc9c0 \uc54a\ub294 \uacbd\uc6b0\uc5d0 \uc801\ud569\ud569\ub2c8\ub2e4.<\/p>\n<h3>2.4 build() \uba54\uc11c\ub4dc<\/h3>\n<p><code>build()<\/code> \uba54\uc11c\ub4dc\ub294 \uc704\uc82f\uc758 UI\ub97c \uc0dd\uc131\ud558\ub294 \uc5ed\ud560\uc744 \ud558\uba70, <code>BuildContext<\/code>\ub97c \ub9e4\uac1c\ubcc0\uc218\ub85c \ubc1b\uc2b5\ub2c8\ub2e4. <code>build()<\/code> \uba54\uc11c\ub4dc \ub0b4\uc5d0\uc11c <code>MaterialApp<\/code>\uacfc <code>Scaffold<\/code>\uc640 \uac19\uc740 \uc704\uc82f\ub4e4\uc744 \uc815\uc758\ud569\ub2c8\ub2e4. <code>Scaffold<\/code>\ub294 \uae30\ubcf8\uc801\uc778 \uc571 \ub808\uc774\uc544\uc6c3\uc744 \uc81c\uacf5\ud558\ub294 \uc704\uc82f\uc785\ub2c8\ub2e4.<\/p>\n<h2>3. \uc608\uc81c \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc758 \uac1c\uc120<\/h2>\n<p>\uae30\ubcf8 \ucf54\ub4dc\ub97c \uc0ac\uc6a9\ud558\uc5ec \uac04\ub2e8\ud55c \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \ub9cc\ub4e4 \uc218 \uc788\uc9c0\ub9cc, \ub354 \ub9ce\uc740 \uae30\ub2a5\uc744 \ucd94\uac00\ud558\uc5ec \uac1c\uc120\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc544\ub798\ub294 \uae30\ubcf8 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc5d0 \ubc84\ud2bc\uc744 \ucd94\uac00\ud558\uace0 \ud074\ub9ad\ud588\uc744 \ub54c \ud14d\uc2a4\ud2b8\uac00 \ubcc0\uacbd\ub418\ub294 \uae30\ub2a5\uc744 \ucd94\uac00\ud55c \uc608\uc81c\uc785\ub2c8\ub2e4.<\/p>\n<pre>\n        <code>\n        import 'package:flutter\/material.dart';\n\n        void main() {\n            runApp(MyApp());\n        }\n\n        class MyApp extends StatefulWidget {\n            @override\n            _MyAppState createState() =&gt; _MyAppState();\n        }\n\n        class _MyAppState extends State<myapp> {\n            String message = '\uc548\ub155\ud558\uc138\uc694, \ud50c\ub7ec\ud130!';\n\n            void _changeMessage() {\n                setState(() {\n                    message = '\ubc84\ud2bc\uc774 \ud074\ub9ad\ub418\uc5c8\uc2b5\ub2c8\ub2e4!';\n                });\n            }\n\n            @override\n            Widget build(BuildContext context) {\n                return MaterialApp(\n                    title: '\ud50c\ub7ec\ud130 \uac15\uc88c',\n                    home: Scaffold(\n                        appBar: AppBar(\n                            title: Text('\uba54\uc778 \ud398\uc774\uc9c0'),\n                        ),\n                        body: Center(\n                            child: Column(\n                                mainAxisAlignment: MainAxisAlignment.center,\n                                children: <widget>[\n                                    Text(message),\n                                    SizedBox(height: 20),\n                                    ElevatedButton(\n                                        onPressed: _changeMessage,\n                                        child: Text('\uba54\uc2dc\uc9c0 \ubcc0\uacbd'),\n                                    ),\n                                ],\n                            ),\n                        ),\n                    ),\n                );\n            }\n        }\n        <\/widget><\/myapp><\/code>\n        <\/pre>\n<h3>3.1 StatefulWidget \ucd94\uac00<\/h3>\n<p>\uc704 \uc608\uc81c\uc5d0\uc11c\ub294 \uc0c1\ud0dc\uac00 \ubcc0\ud560 \uc218 \uc788\uc73c\ubbc0\ub85c <code>StatelessWidget<\/code> \ub300\uc2e0 <code>StatefulWidget<\/code>\uc744 \uc0ac\uc6a9\ud588\uc2b5\ub2c8\ub2e4. <code>StatefulWidget<\/code>\uc740 \ub0b4\ubd80 \uc0c1\ud0dc\ub97c \uac00\uc9c0\uace0 \uc788\uc73c\uba70, UI\uac00 \ubcc0\uacbd\ub420 \uc218 \uc788\ub294 \uacbd\uc6b0\uc5d0 \uc0ac\uc6a9\ud569\ub2c8\ub2e4.<\/p>\n<h3>3.2 setState() \uba54\uc11c\ub4dc<\/h3>\n<p>\ubc84\ud2bc \ud074\ub9ad \uc2dc <code>_changeMessage()<\/code> \uba54\uc11c\ub4dc\ub97c \ud638\ucd9c\ud558\uc5ec \uc0c1\ud0dc\ub97c \uc5c5\ub370\uc774\ud2b8\ud558\uace0, <code>setState()<\/code>\ub97c \uc0ac\uc6a9\ud558\uc5ec UI\ub97c \ub2e4\uc2dc \uadf8\ub9bd\ub2c8\ub2e4. \uc774\ub807\uac8c \ud558\uba74 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc774 \ub3d9\uc801\uc73c\ub85c \ubc18\uc751\ud558\ub294 UI\ub97c \ub9cc\ub4e4 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<h2>4. \ud50c\ub7ec\ud130\uc758 \uc704\uc82f \uad6c\uc870<\/h2>\n<p>\ud50c\ub7ec\ud130\uc758 UI\ub294 \uc704\uc82f(Widgets)\ub85c \uad6c\uc131\ub429\ub2c8\ub2e4. \ubaa8\ub4e0 UI \uc694\uc18c\ub294 \uc704\uc82f\uc73c\ub85c \ud45c\ud604\ub418\uba70, \uc704\uc82f\uc740 \uc11c\ub85c \uacb0\ud569\ud558\uc5ec \ubcf5\uc7a1\ud55c UI\ub97c \uad6c\uc131\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc704\uc82f\uc740 \ud06c\uac8c \ub450 \uac00\uc9c0\ub85c \ub098\ub20c \uc218 \uc788\uc2b5\ub2c8\ub2e4:<\/p>\n<ul>\n<li><strong>StatelessWidget:<\/strong> \uc0c1\ud0dc\uac00 \ubcc0\ud558\uc9c0 \uc54a\uc73c\uba70, \uc815\uc801\uc778 UI\ub97c \uac00\uc9c4 \uc704\uc82f<\/li>\n<li><strong>StatefulWidget:<\/strong> \ub0b4\ubd80 \uc0c1\ud0dc\ub97c \uac00\uc9c0\uace0 \uc788\uc73c\uba70, \uc0c1\ud0dc\uc5d0 \ub530\ub77c UI\uac00 \ubcc0\uacbd\ub420 \uc218 \uc788\ub294 \uc704\uc82f<\/li>\n<\/ul>\n<h2>5. \ud50c\ub7ec\ud130 \ud504\ub85c\uc81d\ud2b8 \uad6c\uc870<\/h2>\n<p>\ud50c\ub7ec\ud130 \ud504\ub85c\uc81d\ud2b8\ub294 \uc5ec\ub7ec \ub514\ub809\ud1a0\ub9ac\uc640 \ud30c\uc77c\ub85c \uad6c\uc131\ub418\uc5b4 \uc788\uc2b5\ub2c8\ub2e4. \uae30\ubcf8\uc801\uc73c\ub85c \uc0dd\uc131\ub418\ub294 \ud30c\uc77c \uad6c\uc870\ub294 \ub2e4\uc74c\uacfc \uac19\uc2b5\ub2c8\ub2e4:<\/p>\n<ul>\n<li><code>lib\/<\/code> &#8211; \uacf5\ud1b5\uc801\uc73c\ub85c \uc0ac\uc6a9\ub418\ub294 Dart \ud30c\uc77c\uc744 \ud3ec\ud568<\/li>\n<li><code>pubspec.yaml<\/code> &#8211; \uc758\uc874\uc131 \ubc0f \uc790\uc6d0 \uad00\ub9ac \ud30c\uc77c<\/li>\n<li><code>android\/<\/code> &#8211; \uc548\ub4dc\ub85c\uc774\ub4dc \uad00\ub828 \uc124\uc815\uacfc \ucf54\ub4dc<\/li>\n<li><code>ios\/<\/code> &#8211; iOS \uad00\ub828 \uc124\uc815\uacfc \ucf54\ub4dc<\/li>\n<\/ul>\n<h2>6. \uacb0\ub860<\/h2>\n<p>\uc774\ubc88 \uac15\uc88c\uc5d0\uc11c\ub294 \ud50c\ub7ec\ud130\uc5d0\uc11c \uae30\ubcf8\uc801\uc778 <code>main.dart<\/code> \ud30c\uc77c\uc758 \uad6c\uc870\uc640 \uad6c\uc131\uc694\uc18c\uc5d0 \ub300\ud574 \uc0b4\ud3b4\ubcf4\uc558\uc2b5\ub2c8\ub2e4. \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc740 <code>main.dart<\/code> \ud30c\uc77c\uc744 \ud1b5\ud574 \uc2e4\ud589\ub418\uba70, \uc704\uc82f\uc758 \uc870\ud569\uc744 \ud1b5\ud574 UI\ub97c \ub9cc\ub4e4 \uc218 \uc788\uc2b5\ub2c8\ub2e4. <code>StatelessWidget<\/code>\uacfc <code>StatefulWidget<\/code>\uc744 \ud65c\uc6a9\ud558\uc5ec \ub3d9\uc801\uc778 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uad6c\ucd95\ud558\ub294 \ubc29\ubc95\ub3c4 \uc775\ud614\uc2b5\ub2c8\ub2e4. \ub098\uc911\uc5d0 \ub354 \ubcf5\uc7a1\ud55c UI\ub97c \uad6c\uc131\ud560 \ub54c, \uc774\ubc88 \uae30\ucd08 \uac15\uc88c\uac00 \ud070 \ub3c4\uc6c0\uc774 \ub420 \uac83\uc785\ub2c8\ub2e4.<\/p>\n<p>\ud50c\ub7ec\ud130\uc5d0 \ub300\ud55c \ub354 \ub9ce\uc740 \uc815\ubcf4\uc640 \uae4a\uc774 \uc788\ub294 \uac15\uc88c\ub97c \uc704\ud574 \uacc4\uc18d\ud574\uc11c \ud559\uc2b5\ud574\ubcf4\uc138\uc694! \ub2e4\uc74c \uac15\uc88c\uc5d0\uc11c\ub294 \ub354 \ub2e4\uc591\ud55c \uc704\uc82f\uacfc \ud50c\ub7ec\ud130\uc758 \uace0\uae09 \uae30\ub2a5\uc5d0 \ub300\ud574 \uc54c\uc544\ubcf4\uaca0\uc2b5\ub2c8\ub2e4.<\/p>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\ud50c\ub7ec\ud130(Flutter)\ub294 \uad6c\uae00\uc5d0\uc11c \uac1c\ubc1c\ud55c \uc624\ud508 \uc18c\uc2a4 UI \uc18c\ud504\ud2b8\uc6e8\uc5b4 \uac1c\ubc1c \ud0a4\ud2b8(SDK)\ub85c, \ubaa8\ubc14\uc77c, \uc6f9, \ub370\uc2a4\ud06c\ud1b1 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \ube60\ub974\uac8c \uad6c\ucd95\ud560 \uc218 \uc788\uac8c \ud574\uc90d\ub2c8\ub2e4. \ud50c\ub7ec\ud130\uc758 \ub9e4\ub825 \uc911 \ud558\ub098\ub294 \ud558\ub098\uc758 \ucf54\ub4dc\ubca0\uc774\uc2a4\ub85c \uc5ec\ub7ec \ud50c\ub7ab\ud3fc\uc5d0\uc11c \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uad6c\ucd95\ud560 \uc218 \uc788\ub2e4\ub294 \uc810\uc785\ub2c8\ub2e4. \uc774\ubc88 \uac15\uc88c\uc5d0\uc11c\ub294 \ud50c\ub7ec\ud130 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc758 \uc911\uc2ec\uc774 \ub418\ub294 main.dart \ud30c\uc77c\uc758 \uae30\ubcf8 \ucf54\ub4dc \uad6c\uc131\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc54c\uc544\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1. main.dart \ud30c\uc77c\uc758 \uc5ed\ud560 main.dart \ud30c\uc77c\uc740 \ud50c\ub7ec\ud130 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc758 \uc9c4\uc785\uc810(entry point)\uc785\ub2c8\ub2e4. &hellip; <a href=\"https:\/\/atmokpo.com\/w\/25668\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;\ud50c\ub7ec\ud130 \uac15\uc88c: 8.2 main.dart \ud30c\uc77c\uc758 \uae30\ubcf8 \ucf54\ub4dc \uad6c\uc131\ud558\uae30&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[17],"tags":[],"class_list":["post-25668","post","type-post","status-publish","format-standard","hentry","category-17"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>\ud50c\ub7ec\ud130 \uac15\uc88c: 8.2 main.dart \ud30c\uc77c\uc758 \uae30\ubcf8 \ucf54\ub4dc \uad6c\uc131\ud558\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/atmokpo.com\/w\/25668\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud50c\ub7ec\ud130 \uac15\uc88c: 8.2 main.dart \ud30c\uc77c\uc758 \uae30\ubcf8 \ucf54\ub4dc \uad6c\uc131\ud558\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"\ud50c\ub7ec\ud130(Flutter)\ub294 \uad6c\uae00\uc5d0\uc11c \uac1c\ubc1c\ud55c \uc624\ud508 \uc18c\uc2a4 UI \uc18c\ud504\ud2b8\uc6e8\uc5b4 \uac1c\ubc1c \ud0a4\ud2b8(SDK)\ub85c, \ubaa8\ubc14\uc77c, \uc6f9, \ub370\uc2a4\ud06c\ud1b1 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \ube60\ub974\uac8c \uad6c\ucd95\ud560 \uc218 \uc788\uac8c \ud574\uc90d\ub2c8\ub2e4. \ud50c\ub7ec\ud130\uc758 \ub9e4\ub825 \uc911 \ud558\ub098\ub294 \ud558\ub098\uc758 \ucf54\ub4dc\ubca0\uc774\uc2a4\ub85c \uc5ec\ub7ec \ud50c\ub7ab\ud3fc\uc5d0\uc11c \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uad6c\ucd95\ud560 \uc218 \uc788\ub2e4\ub294 \uc810\uc785\ub2c8\ub2e4. \uc774\ubc88 \uac15\uc88c\uc5d0\uc11c\ub294 \ud50c\ub7ec\ud130 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc758 \uc911\uc2ec\uc774 \ub418\ub294 main.dart \ud30c\uc77c\uc758 \uae30\ubcf8 \ucf54\ub4dc \uad6c\uc131\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc54c\uc544\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1. main.dart \ud30c\uc77c\uc758 \uc5ed\ud560 main.dart \ud30c\uc77c\uc740 \ud50c\ub7ec\ud130 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc758 \uc9c4\uc785\uc810(entry point)\uc785\ub2c8\ub2e4. &hellip; \ub354 \ubcf4\uae30 &quot;\ud50c\ub7ec\ud130 \uac15\uc88c: 8.2 main.dart \ud30c\uc77c\uc758 \uae30\ubcf8 \ucf54\ub4dc \uad6c\uc131\ud558\uae30&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/25668\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-10-26T13:51:28+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-26T08:00:20+00:00\" \/>\n<meta name=\"author\" content=\"root\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:site\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"root\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"1\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/25668\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/25668\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"\ud50c\ub7ec\ud130 \uac15\uc88c: 8.2 main.dart \ud30c\uc77c\uc758 \uae30\ubcf8 \ucf54\ub4dc \uad6c\uc131\ud558\uae30\",\"datePublished\":\"2024-10-26T13:51:28+00:00\",\"dateModified\":\"2024-11-26T08:00:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/25668\/\"},\"wordCount\":39,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"\ud50c\ub7ec\ud130 \uac15\uc88c\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/25668\/\",\"url\":\"https:\/\/atmokpo.com\/w\/25668\/\",\"name\":\"\ud50c\ub7ec\ud130 \uac15\uc88c: 8.2 main.dart \ud30c\uc77c\uc758 \uae30\ubcf8 \ucf54\ub4dc \uad6c\uc131\ud558\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-10-26T13:51:28+00:00\",\"dateModified\":\"2024-11-26T08:00:20+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/25668\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/25668\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/25668\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud50c\ub7ec\ud130 \uac15\uc88c: 8.2 main.dart \ud30c\uc77c\uc758 \uae30\ubcf8 \ucf54\ub4dc \uad6c\uc131\ud558\uae30\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/atmokpo.com\/w\/#website\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/atmokpo.com\/w\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"contentUrl\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"width\":400,\"height\":400,\"caption\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\"},\"image\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/bebubo4\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\",\"name\":\"root\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"caption\":\"root\"},\"sameAs\":[\"http:\/\/atmokpo.com\/w\"],\"url\":\"https:\/\/atmokpo.com\/w\/author\/root\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\ud50c\ub7ec\ud130 \uac15\uc88c: 8.2 main.dart \ud30c\uc77c\uc758 \uae30\ubcf8 \ucf54\ub4dc \uad6c\uc131\ud558\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/atmokpo.com\/w\/25668\/","og_locale":"ko_KR","og_type":"article","og_title":"\ud50c\ub7ec\ud130 \uac15\uc88c: 8.2 main.dart \ud30c\uc77c\uc758 \uae30\ubcf8 \ucf54\ub4dc \uad6c\uc131\ud558\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"\ud50c\ub7ec\ud130(Flutter)\ub294 \uad6c\uae00\uc5d0\uc11c \uac1c\ubc1c\ud55c \uc624\ud508 \uc18c\uc2a4 UI \uc18c\ud504\ud2b8\uc6e8\uc5b4 \uac1c\ubc1c \ud0a4\ud2b8(SDK)\ub85c, \ubaa8\ubc14\uc77c, \uc6f9, \ub370\uc2a4\ud06c\ud1b1 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \ube60\ub974\uac8c \uad6c\ucd95\ud560 \uc218 \uc788\uac8c \ud574\uc90d\ub2c8\ub2e4. \ud50c\ub7ec\ud130\uc758 \ub9e4\ub825 \uc911 \ud558\ub098\ub294 \ud558\ub098\uc758 \ucf54\ub4dc\ubca0\uc774\uc2a4\ub85c \uc5ec\ub7ec \ud50c\ub7ab\ud3fc\uc5d0\uc11c \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uad6c\ucd95\ud560 \uc218 \uc788\ub2e4\ub294 \uc810\uc785\ub2c8\ub2e4. \uc774\ubc88 \uac15\uc88c\uc5d0\uc11c\ub294 \ud50c\ub7ec\ud130 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc758 \uc911\uc2ec\uc774 \ub418\ub294 main.dart \ud30c\uc77c\uc758 \uae30\ubcf8 \ucf54\ub4dc \uad6c\uc131\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc54c\uc544\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1. main.dart \ud30c\uc77c\uc758 \uc5ed\ud560 main.dart \ud30c\uc77c\uc740 \ud50c\ub7ec\ud130 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc758 \uc9c4\uc785\uc810(entry point)\uc785\ub2c8\ub2e4. &hellip; \ub354 \ubcf4\uae30 \"\ud50c\ub7ec\ud130 \uac15\uc88c: 8.2 main.dart \ud30c\uc77c\uc758 \uae30\ubcf8 \ucf54\ub4dc \uad6c\uc131\ud558\uae30\"","og_url":"https:\/\/atmokpo.com\/w\/25668\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-10-26T13:51:28+00:00","article_modified_time":"2024-11-26T08:00:20+00:00","author":"root","twitter_card":"summary_large_image","twitter_creator":"@bebubo4","twitter_site":"@bebubo4","twitter_misc":{"\uae00\uc4f4\uc774":"root","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"1\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/25668\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/25668\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"\ud50c\ub7ec\ud130 \uac15\uc88c: 8.2 main.dart \ud30c\uc77c\uc758 \uae30\ubcf8 \ucf54\ub4dc \uad6c\uc131\ud558\uae30","datePublished":"2024-10-26T13:51:28+00:00","dateModified":"2024-11-26T08:00:20+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/25668\/"},"wordCount":39,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["\ud50c\ub7ec\ud130 \uac15\uc88c"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/25668\/","url":"https:\/\/atmokpo.com\/w\/25668\/","name":"\ud50c\ub7ec\ud130 \uac15\uc88c: 8.2 main.dart \ud30c\uc77c\uc758 \uae30\ubcf8 \ucf54\ub4dc \uad6c\uc131\ud558\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-10-26T13:51:28+00:00","dateModified":"2024-11-26T08:00:20+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/25668\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/25668\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/25668\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"\ud50c\ub7ec\ud130 \uac15\uc88c: 8.2 main.dart \ud30c\uc77c\uc758 \uae30\ubcf8 \ucf54\ub4dc \uad6c\uc131\ud558\uae30"}]},{"@type":"WebSite","@id":"https:\/\/atmokpo.com\/w\/#website","url":"https:\/\/atmokpo.com\/w\/","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","description":"","publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/atmokpo.com\/w\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Organization","@id":"https:\/\/atmokpo.com\/w\/#organization","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","url":"https:\/\/atmokpo.com\/w\/","logo":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/","url":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","contentUrl":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","width":400,"height":400,"caption":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8"},"image":{"@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/bebubo4"]},{"@type":"Person","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7","name":"root","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","caption":"root"},"sameAs":["http:\/\/atmokpo.com\/w"],"url":"https:\/\/atmokpo.com\/w\/author\/root\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[{"id":25676,"url":"https:\/\/atmokpo.com\/w\/25676\/","url_meta":{"origin":25668,"position":0},"title":"\ud50c\ub7ec\ud130 \uac15\uc88c: 9.1 \uc0c1\uc18d\uc774\ub780?","author":"root","date":"2024\ub144 10\uc6d4 26\uc77c","format":false,"excerpt":"\ud504\ub85c\uadf8\ub798\ubc0d\uc758 \ud575\uc2ec \uac1c\ub150 \uc911 \ud558\ub098\uc778 \uc0c1\uc18d\uc740 \uac1d\uccb4 \uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d\uc758 \uac00\uc7a5 \uc911\uc694\ud55c \ud2b9\uc9d5 \uc911 \ud558\ub098\ub85c, \ud50c\ub7ec\ud130\uc5d0\uc11c\ub3c4 \uac1d\uccb4 \uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d\uc758 \uc6d0\uce59\uc744 \ub530\ub974\uace0 \uc788\uc2b5\ub2c8\ub2e4. \ubcf8 \uac15\uc88c\uc5d0\uc11c\ub294 \ud50c\ub7ec\ud130\uc5d0\uc11c\uc758 \uc0c1\uc18d \uac1c\ub150, \uc0ac\uc6a9 \ubc29\ubc95, \uadf8\ub9ac\uace0 \uc2e4\uc804 \uc608\uc81c\ub97c \ud1b5\ud574 \uc0c1\uc18d\uc744 \uae4a\uc774 \uc774\ud574\ud560 \uc218 \uc788\ub3c4\ub85d \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4. 1. \uc0c1\uc18d\uc758 \uc815\uc758 \uc0c1\uc18d(Inheritance)\uc740 \uae30\uc874 \ud074\ub798\uc2a4(\ubd80\ubaa8 \ud074\ub798\uc2a4 \ub610\ub294 \uc288\ud37c \ud074\ub798\uc2a4)\uc758 \uc18d\uc131\uacfc \uba54\uc11c\ub4dc\ub97c\u2026","rel":"","context":"&quot;\ud50c\ub7ec\ud130 \uac15\uc88c&quot;\uc5d0\uc11c","block_context":{"text":"\ud50c\ub7ec\ud130 \uac15\uc88c","link":"https:\/\/atmokpo.com\/w\/category\/%ed%94%8c%eb%9f%ac%ed%84%b0-%ea%b0%95%ec%a2%8c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":43521,"url":"https:\/\/atmokpo.com\/w\/43521\/","url_meta":{"origin":25668,"position":1},"title":"[Dart \uc5b8\uc5b4\uac15\uc88c]  027. Dart\uc640 \ud1b5\ud569\ub41c \ud604\ub300\uc801 \uac1c\ubc1c \ud2b8\ub80c\ub4dc, Dart\ub85c \ub9cc\ub4dc\ub294 \ud06c\ub85c\uc2a4 \ud50c\ub7ab\ud3fc \uc560\ud50c\ub9ac\ucf00\uc774\uc158","author":"root","date":"2024\ub144 11\uc6d4 28\uc77c","format":false,"excerpt":"\uc791\uc131\uc77c: 2023\ub144 10\uc6d4 \uc791\uc131\uc790: AI \uac1c\ubc1c\uc790 1. Dart\uc758 \ubc30\uacbd\uacfc \uac1c\uc694 Dart\ub294 \uad6c\uae00\uc5d0\uc11c \uac1c\ubc1c\ud55c \ud504\ub85c\uadf8\ub798\ubc0d \uc5b8\uc5b4\ub85c, \uc8fc\ub85c \uc6f9\uacfc \ubaa8\ubc14\uc77c \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc758 \uac1c\ubc1c\uc744 \uc704\ud574 \uc124\uacc4\ub418\uc5c8\uc2b5\ub2c8\ub2e4. Dart\ub294 \uac1d\uccb4 \uc9c0\ud5a5\uc801\uc774\uba70, C \uacc4\uc5f4 \uc5b8\uc5b4\uc758 \ubb38\ubc95\uc744 \ubc14\ud0d5\uc73c\ub85c \ud558\uace0 \uc788\uc5b4 \uac1c\ubc1c\uc790\ub4e4\uc774 \uc27d\uac8c \uc811\uadfc\ud560 \uc218 \uc788\ub294 \uc5b8\uc5b4\uc785\ub2c8\ub2e4. Dart\uc758 \uc8fc\uc694 \ubaa9\uc801\uc740 \ube60\ub978 \uc131\ub2a5\uacfc \uc0dd\uc0b0\uc131\uc744 \uc81c\uacf5\ud558\ub294 \uac83\uc774\uba70, \ub2e4\uc591\ud55c \ud50c\ub7ab\ud3fc\uc5d0 \ub300\ud55c \ud06c\ub85c\uc2a4\u2026","rel":"","context":"&quot;\ud50c\ub7ec\ud130 \uac15\uc88c&quot;\uc5d0\uc11c","block_context":{"text":"\ud50c\ub7ec\ud130 \uac15\uc88c","link":"https:\/\/atmokpo.com\/w\/category\/%ed%94%8c%eb%9f%ac%ed%84%b0-%ea%b0%95%ec%a2%8c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":43505,"url":"https:\/\/atmokpo.com\/w\/43505\/","url_meta":{"origin":25668,"position":2},"title":"[Dart \uc5b8\uc5b4\uac15\uc88c]  019. Dart\uc758 \ub77c\uc774\ube0c\ub7ec\ub9ac \ubc0f \ud504\ub808\uc784\uc6cc\ud06c \uc18c\uac1c, \uc8fc\uc694 \ub77c\uc774\ube0c\ub7ec\ub9ac \uc18c\uac1c (http, routing \ub4f1)","author":"root","date":"2024\ub144 11\uc6d4 28\uc77c","format":false,"excerpt":"Dart\ub294 \uad6c\uae00\uc774 \uac1c\ubc1c\ud55c \ud504\ub85c\uadf8\ub798\ubc0d \uc5b8\uc5b4\ub85c, \uc8fc\ub85c \ubaa8\ubc14\uc77c \ubc0f \uc6f9 \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uac1c\ubc1c\uc5d0 \uc0ac\uc6a9\ub429\ub2c8\ub2e4. Dart\ub294 \ub2e4\uc591\ud55c \ub77c\uc774\ube0c\ub7ec\ub9ac\uc640 \ud504\ub808\uc784\uc6cc\ud06c\ub97c \uc81c\uacf5\ud558\uc5ec \uac1c\ubc1c\uc790\ub4e4\uc774 \ud6a8\uc728\uc801\uc73c\ub85c \uc18c\ud504\ud2b8\uc6e8\uc5b4\ub97c \uac1c\ubc1c\ud560 \uc218 \uc788\ub3c4\ub85d \uc9c0\uc6d0\ud569\ub2c8\ub2e4. \uc774 \uae00\uc5d0\uc11c\ub294 Dart\uc758 \uc8fc\uc694 \ub77c\uc774\ube0c\ub7ec\ub9ac\uc640 \ud504\ub808\uc784\uc6cc\ud06c\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc54c\uc544\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. Dart \ub77c\uc774\ube0c\ub7ec\ub9ac \uac1c\uc694 Dart\uc758 \ub77c\uc774\ube0c\ub7ec\ub9ac\ub294 \uae30\ub2a5 \ub2e8\uc704\ub85c \uad6c\uc131\ub418\uc5b4 \uc788\uc73c\uba70, \ud2b9\uc815 \uc791\uc5c5\uc744 \uc27d\uac8c \uc218\ud589\ud560 \uc218 \uc788\ub3c4\ub85d \ub3d5\uc2b5\ub2c8\ub2e4. Dart\u2026","rel":"","context":"&quot;\ud50c\ub7ec\ud130 \uac15\uc88c&quot;\uc5d0\uc11c","block_context":{"text":"\ud50c\ub7ec\ud130 \uac15\uc88c","link":"https:\/\/atmokpo.com\/w\/category\/%ed%94%8c%eb%9f%ac%ed%84%b0-%ea%b0%95%ec%a2%8c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":43501,"url":"https:\/\/atmokpo.com\/w\/43501\/","url_meta":{"origin":25668,"position":3},"title":"[Dart \uc5b8\uc5b4\uac15\uc88c]  017. \ud14c\uc2a4\ud2b8 \ubc0f \ub514\ubc84\uae45, Dart\uc5d0\uc11c\uc758 \ub2e8\uc704 \ud14c\uc2a4\ud2b8 \uc791\uc131 \ubc29\ubc95","author":"root","date":"2024\ub144 11\uc6d4 28\uc77c","format":false,"excerpt":"1. \ub4e4\uc5b4\uac00\uba70 Dart\ub294 \ud604\ub300\uc801\uc778 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uc791\uc131\ud558\uae30 \uc704\ud574 \uc124\uacc4\ub41c \ud504\ub85c\uadf8\ub798\ubc0d \uc5b8\uc5b4\uc785\ub2c8\ub2e4. \ud2b9\ud788 Flutter\uc640 \uacb0\ud569\ub418\uba74\uc11c \ubaa8\ubc14\uc77c \ubc0f \uc6f9 \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uac1c\ubc1c\uc5d0 \ud601\uc2e0\uc744 \uac00\uc838\uc654\uc2b5\ub2c8\ub2e4. \uadf8\ub7ec\ub098 \ubb34\uc5c7\ubcf4\ub2e4 \uc911\uc694\ud55c \uac83\uc740 \ucf54\ub4dc\uc758 \ud488\uc9c8\uc744 \uc720\uc9c0\ud558\uace0 \ubc84\uadf8\ub97c \ubc29\uc9c0\ud558\uae30 \uc704\ud574 \ud14c\uc2a4\ud2b8 \ubc0f \ub514\ubc84\uae45 \uacfc\uc815\uc744 \uac70\uce58\ub294 \uac83\uc785\ub2c8\ub2e4. \uc774 \uae00\uc5d0\uc11c\ub294 Dart\uc758 \ub2e8\uc704 \ud14c\uc2a4\ud2b8 \uc791\uc131 \ubc29\ubc95\uacfc \uc720\uc6a9\ud55c \ub514\ubc84\uae45 \uae30\ubc95\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc54c\uc544\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 2.\u2026","rel":"","context":"&quot;\ud50c\ub7ec\ud130 \uac15\uc88c&quot;\uc5d0\uc11c","block_context":{"text":"\ud50c\ub7ec\ud130 \uac15\uc88c","link":"https:\/\/atmokpo.com\/w\/category\/%ed%94%8c%eb%9f%ac%ed%84%b0-%ea%b0%95%ec%a2%8c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":43408,"url":"https:\/\/atmokpo.com\/w\/43408\/","url_meta":{"origin":25668,"position":4},"title":"[\uc544\ud30c\uce58 \ucf54\ub974\ub3c4\ubc14]  \uc544\ud30c\uce58 \ucf54\ub974\ub3c4\ubc14\uc758 \ubc1c\uc804 \ubc29\ud5a5 \ubc0f \ub300\uc548 \uae30\uc220","author":"root","date":"2024\ub144 11\uc6d4 27\uc77c","format":false,"excerpt":"1. \uc544\ud30c\uce58 \ucf54\ub974\ub3c4\ubc14\ub780 \ubb34\uc5c7\uc778\uac00? \uc544\ud30c\uce58 \ucf54\ub974\ub3c4\ubc14(Apache Cordova)\ub294 HTML, CSS, JavaScript\ub97c \uc0ac\uc6a9\ud558\uc5ec \ubaa8\ubc14\uc77c \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uac1c\ubc1c\ud560 \uc218 \uc788\ub3c4\ub85d \ub3c4\uc640\uc8fc\ub294 \ud50c\ub7ab\ud3fc\uc785\ub2c8\ub2e4. \uae30\ubcf8\uc801\uc73c\ub85c \uc6f9 \uae30\uc220\uc744 \ud65c\uc6a9\ud558\uc5ec \ub2e4\uc591\ud55c \ubaa8\ubc14\uc77c \uc6b4\uc601 \uccb4\uc81c(Android, iOS \ub4f1)\uc5d0\uc11c \uc2e4\ud589\ub420 \uc218 \uc788\ub294 \ub124\uc774\ud2f0\ube0c \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uc27d\uac8c \ub9cc\ub4e4 \uc218 \uc788\ub3c4\ub85d \ud574\uc90d\ub2c8\ub2e4. \ucf54\ub974\ub3c4\ubc14\ub294 \uace0\uc720\ud55c \ud0dc\uadf8\uc640 API\ub97c \uc81c\uacf5\ud558\uc5ec \uc6f9 \uac1c\ubc1c\uc790\uac00 \ubaa8\ubc14\uc77c \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uc27d\uac8c\u5f00\u53d1\ud560 \uc218 \uc788\uac8c\u2026","rel":"","context":"&quot;cordova&quot;\uc5d0\uc11c","block_context":{"text":"cordova","link":"https:\/\/atmokpo.com\/w\/category\/cordova\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":43519,"url":"https:\/\/atmokpo.com\/w\/43519\/","url_meta":{"origin":25668,"position":5},"title":"[Dart \uc5b8\uc5b4\uac15\uc88c]  026. Dart\uc640 \ud1b5\ud569\ub41c \ud604\ub300\uc801 \uac1c\ubc1c \ud2b8\ub80c\ub4dc, Dart\uc640 DevOps, CI CD \ud30c\uc774\ud504\ub77c\uc778","author":"root","date":"2024\ub144 11\uc6d4 28\uc77c","format":false,"excerpt":"\uc9c0\ub09c \uba87 \ub144\uac04 Dart\ub77c\ub294 \ud504\ub85c\uadf8\ub798\ubc0d \uc5b8\uc5b4\uac00 \uc778\uae30\ub97c \ub04c\uba74\uc11c, \ub9ce\uc740 \uac1c\ubc1c\uc790\ub4e4\uc774 \ubaa8\ubc14\uc77c \ubc0f \uc6f9 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \ub9cc\ub4e4\uae30 \uc704\ud574 \uc774 \uc5b8\uc5b4\ub97c \uc120\ud0dd\ud558\uace0 \uc788\uc2b5\ub2c8\ub2e4. Dart\ub294 Google\uc5d0 \uc758\ud574 \uac1c\ubc1c\ub418\uc5c8\uc73c\uba70, \ud2b9\ud788 Flutter \ud504\ub808\uc784\uc6cc\ud06c\uc640 \ubc00\uc811\ud558\uac8c \uc5f0\uad00\ub418\uc5b4 \uc788\uc2b5\ub2c8\ub2e4. Flutter\ub97c \uc0ac\uc6a9\ud558\uc5ec \ub9e4\ub825\uc801\uc774\uace0 performant\ud55c UI\ub97c \uad6c\ucd95\ud558\ub294 \uac83\uc774 \uac00\ub2a5\ud558\uc9c0\ub9cc, Dart\uc758 \uc7a5\uc810\uc740 UI \uadf8 \uc774\uc0c1\uc785\ub2c8\ub2e4. \uc774\ubc88 \ube14\ub85c\uadf8 \uae00\uc5d0\uc11c\ub294 Dart\uc640 \ud604\ub300\uc801\uc778 \uac1c\ubc1c \ud2b8\ub80c\ub4dc,\u2026","rel":"","context":"&quot;\ud50c\ub7ec\ud130 \uac15\uc88c&quot;\uc5d0\uc11c","block_context":{"text":"\ud50c\ub7ec\ud130 \uac15\uc88c","link":"https:\/\/atmokpo.com\/w\/category\/%ed%94%8c%eb%9f%ac%ed%84%b0-%ea%b0%95%ec%a2%8c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]}],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/25668","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/comments?post=25668"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/25668\/revisions"}],"predecessor-version":[{"id":25669,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/25668\/revisions\/25669"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=25668"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=25668"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=25668"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}