{"id":25646,"date":"2024-10-26T13:51:21","date_gmt":"2024-10-26T13:51:21","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=25646"},"modified":"2024-11-26T08:00:35","modified_gmt":"2024-11-26T08:00:35","slug":"%ed%94%8c%eb%9f%ac%ed%84%b0-%ea%b0%95%ec%a2%8c-6-5-%ed%81%b4%eb%9e%98%ec%8a%a4%ec%99%80-%ec%9c%84%ec%a0%af%ec%9d%98-%ec%a0%95%ec%b2%b4","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/25646\/","title":{"rendered":"\ud50c\ub7ec\ud130 \uac15\uc88c: 6.5 \ud074\ub798\uc2a4\uc640 \uc704\uc82f\uc758 \uc815\uccb4"},"content":{"rendered":"<p><body><\/p>\n<article>\n<header>\n<p>\ud50c\ub7ec\ud130\ub294 \ubaa8\ubc14\uc77c, \uc6f9, \ub370\uc2a4\ud06c\ud0d1 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uc27d\uac8c \uc81c\uc791\ud560 \uc218 \uc788\ub3c4\ub85d \ub3d5\ub294 UI \ud234\ud0b7\uc785\ub2c8\ub2e4. \uc774\ubc88 \uac15\uc88c\uc5d0\uc11c\ub294 \ud50c\ub7ec\ud130\uc758 \ud575\uc2ec \uac1c\ub150\uc778 &#8216;\ud074\ub798\uc2a4&#8217;\uc640 &#8216;\uc704\uc82f&#8217;\uc758 \uc815\uccb4\ub97c \uc2ec\ub3c4 \uc788\uac8c \uc54c\uc544\ubcf4\uaca0\uc2b5\ub2c8\ub2e4.<\/p>\n<\/header>\n<section>\n<h2>1. \ud074\ub798\uc2a4(Class)\uc758 \uc774\ud574<\/h2>\n<p>\n                \ud074\ub798\uc2a4\ub294 \uac1d\uccb4 \uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d(OOP)\uc758 \uae30\ubcf8 \ub2e8\uc704\ub85c, \uac1d\uccb4\uc758 \uc124\uacc4\ub3c4\ub97c \uc81c\uacf5\ud569\ub2c8\ub2e4. \ub2e4\ud2b8(Dart) \uc5b8\uc5b4\uc5d0\uc11c \ud074\ub798\uc2a4\ub294 \ub370\uc774\ud130 \ud544\ub4dc\uc640 \uba54\uc18c\ub4dc\ub97c \ud3ec\ud568\ud560 \uc218 \uc788\ub294 \uad6c\uc870\uccb4\uc785\ub2c8\ub2e4.<br \/>\n                \ud074\ub798\uc2a4\ub294 \uac1d\uccb4\ub97c \uc0dd\uc131\ud558\uae30 \uc704\ud55c \ud2c0\uc744 \uc81c\uacf5\ud558\uba70, \uac01 \uac1d\uccb4\ub294 \ud074\ub798\uc2a4\uc758 \uc18d\uc131\uacfc \uba54\uc18c\ub4dc\ub97c \uc0c1\uc18d\ubc1b\uc2b5\ub2c8\ub2e4.\n            <\/p>\n<h3>1.1. \ud074\ub798\uc2a4 \uc120\uc5b8<\/h3>\n<p>\ub2e4\ud2b8\uc5d0\uc11c \ud074\ub798\uc2a4\ub97c \uc120\uc5b8\ud558\ub294 \ubc29\ubc95\uc740 \uc544\ub798\uc640 \uac19\uc2b5\ub2c8\ub2e4.<\/p>\n<pre><code>\nclass Dog {\n    String name;\n    \n    Dog(this.name);\n    \n    void bark() {\n        print('$name\uac00 \uc9d6\uc2b5\ub2c8\ub2e4!');\n    }\n}\n<\/code><\/pre>\n<p>\uc704\uc758 \uc608\uc81c\ub294 Dog\ub77c\ub294 \ud074\ub798\uc2a4\ub97c \uc815\uc758\ud558\uace0, name\uc774\ub77c\ub294 \ud544\ub4dc\ub97c \uac00\uc9c0\uace0 \uc788\uc73c\uba70, bark\ub77c\ub294 \uba54\uc18c\ub4dc\ub97c \ud3ec\ud568\ud569\ub2c8\ub2e4.<\/p>\n<h3>1.2. \ud074\ub798\uc2a4\uc758 \uc0c1\uc18d<\/h3>\n<p>\ud074\ub798\uc2a4\ub294 \ub2e4\ub978 \ud074\ub798\uc2a4\ub85c\ubd80\ud130 \uc0c1\uc18d\ubc1b\uc544 \uc7ac\uc0ac\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc0c1\uc18d\uc744 \ud1b5\ud574 \uae30\uc874 \ud074\ub798\uc2a4\uc758 \uae30\ub2a5\uc744 \ud655\uc7a5\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<pre><code>\nclass Cat extends Animal {\n    void meow() {\n        print('\uc57c\uc639!');\n    }\n}\n<\/code><\/pre>\n<p>\uc704 \ucf54\ub4dc\uc5d0\uc11c Cat \ud074\ub798\uc2a4\ub294 Animal \ud074\ub798\uc2a4\ub97c \uc0c1\uc18d\ubc1b\uc544 \uc0c8\ub85c\uc6b4 \uae30\ub2a5\uc744 \ucd94\uac00\ud569\ub2c8\ub2e4.<\/p>\n<\/section>\n<section>\n<h2>2. \uc704\uc82f(Widget)\uc758 \uc815\uccb4<\/h2>\n<p>\n                \ud50c\ub7ec\ud130\uc5d0\uc11c \ubaa8\ub4e0 \uac83\uc740 \uc704\uc82f\uc785\ub2c8\ub2e4. UI \ucef4\ud3ec\ub10c\ud2b8\ub294 \ubb3c\ub860\uc774\uace0, \ub808\uc774\uc544\uc6c3, \uc2a4\ud0c0\uc77c \ub4f1 \ubaa8\ub4e0 \uac83\uc774 \uc704\uc82f\uc744 \ud1b5\ud574 \ud45c\ud604\ub429\ub2c8\ub2e4. \uc704\uc82f\uc740 \uc0c1\ud0dc\ub97c \uac00\uc9c8 \uc218 \uc788\uace0, \uc774\ub97c \ud1b5\ud574 \uc0ac\uc6a9\uc790\uc640 \uc0c1\ud638\uc791\uc6a9\ud569\ub2c8\ub2e4.\n            <\/p>\n<h3>2.1. StatelessWidget vs StatefulWidget<\/h3>\n<p>\ud50c\ub7ec\ud130\uc758 \uc704\uc82f\uc740 \uc8fc\ub85c \ub450 \uac00\uc9c0\ub85c \ub098\ub269\ub2c8\ub2e4: StatelessWidget\uacfc StatefulWidget.<\/p>\n<h4>StatelessWidget<\/h4>\n<p>\n                StatelessWidget\uc740 \uc0c1\ud0dc\ub97c \uac00\uc9c0\uc9c0 \uc54a\ub294 \uc704\uc82f\uc785\ub2c8\ub2e4. \uc774 \uc704\uc82f\uc740 \uc0dd\uc131\ub41c \ud6c4\uc5d0 \ubcc0\uacbd\ub418\uc9c0 \uc54a\uc73c\uba70, UI\uac00 \ud56d\uc0c1 \ub3d9\uc77c\ud55c \ucd9c\ub825\uc744 \uc0dd\uc131\ud569\ub2c8\ub2e4.\n            <\/p>\n<pre><code>\nclass MyStatelessWidget extends StatelessWidget {\n    @override\n    Widget build(BuildContext context) {\n        return Text('\uc548\ub155\ud558\uc138\uc694, \ud50c\ub7ec\ud130!');\n    }\n}\n<\/code><\/pre>\n<h4>StatefulWidget<\/h4>\n<p>\n                StatefulWidget\uc740 \uc0c1\ud0dc\ub97c \uac00\uc9c8 \uc218 \uc788\ub294 \uc704\uc82f\uc73c\ub85c, \ub0b4\ubd80 \uc0c1\ud0dc\uac00 \ubcc0\uacbd\ub418\uba74 UI\ub3c4 \ubcc0\uacbd\ub429\ub2c8\ub2e4. \uc774\ub7ec\ud55c \uc704\uc82f\uc740 \uc8fc\ub85c \uc0ac\uc6a9\uc790 \uc785\ub825\uc744 \ud544\uc694\ub85c \ud560 \ub54c \uc0ac\uc6a9\ub429\ub2c8\ub2e4.\n            <\/p>\n<pre><code>\nclass MyStatefulWidget extends StatefulWidget {\n    @override\n    _MyStatefulWidgetState createState() =&gt; _MyStatefulWidgetState();\n}\n\nclass _MyStatefulWidgetState extends State<mystatefulwidget> {\n    int _counter = 0;\n\n    @override\n    Widget build(BuildContext context) {\n        return Column(\n            children: [\n                Text('\ubc84\ud2bc\uc744 \ub204\ub978 \ud69f\uc218: $_counter'),\n                ElevatedButton(\n                    onPressed: () {\n                        setState(() {\n                            _counter++;\n                        });\n                    },\n                    child: Text('\uc99d\uac00')\n                ),\n            ],\n        );\n    }\n}\n<\/mystatefulwidget><\/code><\/pre>\n<\/section>\n<section>\n<h2>3. \uc704\uc82f \ud2b8\ub9ac\uc640 \ube4c\ub4dc \uba54\uc18c\ub4dc<\/h2>\n<p>\ud50c\ub7ec\ud130\uc758 \uc720\uc5f0\uc131\uc740 \uc704\uc82f \ud2b8\ub9ac\uc5d0\uc11c \ube44\ub86f\ub429\ub2c8\ub2e4. \ubaa8\ub4e0 \uc704\uc82f\uc740 \ud2b8\ub9ac \uad6c\uc870\ub97c \ud615\uc131\ud558\uc5ec \uc11c\ub85c \uc5f0\uacb0\ub418\uc5b4 \uc788\uc73c\uba70, \uac01 \uc704\uc82f\uc740 build \uba54\uc18c\ub4dc\ub97c \ud1b5\ud574 UI\ub97c \uad6c\uc131\ud569\ub2c8\ub2e4.<\/p>\n<h3>3.1. \uc704\uc82f \ud2b8\ub9ac \uad6c\uc870<\/h3>\n<p>\uc704\uc82f \ud2b8\ub9ac\ub294 \ubd80\ubaa8 \uc704\uc82f\uacfc \uc790\uc2dd \uc704\uc82f\uc73c\ub85c \uc774\ub8e8\uc5b4\uc838 \uc788\uc2b5\ub2c8\ub2e4. \ubd80\ubaa8 \uc704\uc82f\uc740 \uc5ec\ub7ec \uac1c\uc758 \uc790\uc2dd \uc704\uc82f\uc744 \ud3ec\ud568\ud560 \uc218 \uc788\uc73c\uba70, \uc774\ub97c \ud1b5\ud574 \ubcf5\uc7a1\ud55c UI\ub97c \uad6c\uc131\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<h3>3.2. \ube4c\ub4dc \uba54\uc18c\ub4dc\uc758 \uc5ed\ud560<\/h3>\n<p>\uac01 \uc704\uc82f\uc740 \uc0dd\uc131 \uc2dc build \uba54\uc18c\ub4dc\ub97c \ud638\ucd9c\ud558\uc5ec \ud654\uba74\uc5d0 \ud45c\uc2dc\ub420 \ub0b4\uc6a9\uc744 \uacb0\uc815\ud569\ub2c8\ub2e4. \uc774 \uba54\uc18c\ub4dc\ub294 \uc704\uc82f\uc758 \uc0c1\ud0dc\ub97c \uae30\ubc18\uc73c\ub85c \ucd5c\uc801\ud654\ub41c UI\ub97c \ud6a8\uacfc\uc801\uc73c\ub85c \ub80c\ub354\ub9c1\ud569\ub2c8\ub2e4.<\/p>\n<\/section>\n<section>\n<h2>4. \uc704\uc82f\uc758 \ub77c\uc774\ud504 \uc0ac\uc774\ud074 \uc774\ud574\ud558\uae30<\/h2>\n<p>StatefulWidget\uc758 \uacbd\uc6b0, \uc704\uc82f\uc758 \ub77c\uc774\ud504 \uc0ac\uc774\ud074\uc774 \uc911\uc694\ud569\ub2c8\ub2e4. \uac01 \uc0c1\ud0dc \ubcc0\ud654\uc5d0 \ub530\ub77c \ub2e4\uc591\ud55c \uba54\uc18c\ub4dc\uac00 \ud638\ucd9c\ub429\ub2c8\ub2e4. \uc774\ub97c \ud1b5\ud574 \ucd5c\uc801\uc758 \uc131\ub2a5\uacfc \uc0ac\uc6a9\uc790 \uacbd\ud5d8\uc744 \uc81c\uacf5\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<h3>4.1. \ub77c\uc774\ud504 \uc0ac\uc774\ud074 \uba54\uc18c\ub4dc<\/h3>\n<p>StatefulWidget\uc758 \ub77c\uc774\ud504 \uc0ac\uc774\ud074\uc740 \ub2e4\uc74c\uc758 \uba54\uc18c\ub4dc\ub85c \uad6c\uc131\ub429\ub2c8\ub2e4:<\/p>\n<ul>\n<li>initState()<\/li>\n<li>didChangeDependencies()<\/li>\n<li>build()<\/li>\n<li>setState()<\/li>\n<li>dispose()<\/li>\n<\/ul>\n<p>\uac01 \uba54\uc18c\ub4dc\ub294 \ud2b9\uc815 \uc870\uac74\uc5d0\uc11c \ud638\ucd9c\ub418\uba70, \uc704\uc82f\uc758 \uc0c1\ud0dc\ub97c \uad00\ub9ac\ud558\uace0, \ud544\uc694\ud55c \uacbd\uc6b0 \ub9ac\uc18c\uc2a4\ub97c \uc815\ub9ac\ud558\ub294 \uc5ed\ud560\uc744 \ud569\ub2c8\ub2e4.<\/p>\n<\/section>\n<footer>\n<p>\uc774\ubc88 \uac15\uc88c\uc5d0\uc11c\ub294 \ud074\ub798\uc2a4\uc640 \uc704\uc82f\uc758 \uc815\uccb4\uc5d0 \ub300\ud574 \uc0b4\ud3b4\ubcf4\uc558\uc2b5\ub2c8\ub2e4. \uc774 \uac1c\ub150\uc744 \uc774\ud574\ud558\uace0 \uc798 \ud65c\uc6a9\ud55c\ub2e4\uba74 \ud50c\ub7ec\ud130 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \ub9cc\ub4dc\ub294 \ub370 \ud070 \ub3c4\uc6c0\uc774 \ub420 \uac83\uc785\ub2c8\ub2e4.<\/p>\n<\/footer>\n<\/article>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\ud50c\ub7ec\ud130\ub294 \ubaa8\ubc14\uc77c, \uc6f9, \ub370\uc2a4\ud06c\ud0d1 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uc27d\uac8c \uc81c\uc791\ud560 \uc218 \uc788\ub3c4\ub85d \ub3d5\ub294 UI \ud234\ud0b7\uc785\ub2c8\ub2e4. \uc774\ubc88 \uac15\uc88c\uc5d0\uc11c\ub294 \ud50c\ub7ec\ud130\uc758 \ud575\uc2ec \uac1c\ub150\uc778 &#8216;\ud074\ub798\uc2a4&#8217;\uc640 &#8216;\uc704\uc82f&#8217;\uc758 \uc815\uccb4\ub97c \uc2ec\ub3c4 \uc788\uac8c \uc54c\uc544\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1. \ud074\ub798\uc2a4(Class)\uc758 \uc774\ud574 \ud074\ub798\uc2a4\ub294 \uac1d\uccb4 \uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d(OOP)\uc758 \uae30\ubcf8 \ub2e8\uc704\ub85c, \uac1d\uccb4\uc758 \uc124\uacc4\ub3c4\ub97c \uc81c\uacf5\ud569\ub2c8\ub2e4. \ub2e4\ud2b8(Dart) \uc5b8\uc5b4\uc5d0\uc11c \ud074\ub798\uc2a4\ub294 \ub370\uc774\ud130 \ud544\ub4dc\uc640 \uba54\uc18c\ub4dc\ub97c \ud3ec\ud568\ud560 \uc218 \uc788\ub294 \uad6c\uc870\uccb4\uc785\ub2c8\ub2e4. \ud074\ub798\uc2a4\ub294 \uac1d\uccb4\ub97c \uc0dd\uc131\ud558\uae30 \uc704\ud55c \ud2c0\uc744 \uc81c\uacf5\ud558\uba70, \uac01 \uac1d\uccb4\ub294 \ud074\ub798\uc2a4\uc758 \uc18d\uc131\uacfc &hellip; <a href=\"https:\/\/atmokpo.com\/w\/25646\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;\ud50c\ub7ec\ud130 \uac15\uc88c: 6.5 \ud074\ub798\uc2a4\uc640 \uc704\uc82f\uc758 \uc815\uccb4&#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-25646","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: 6.5 \ud074\ub798\uc2a4\uc640 \uc704\uc82f\uc758 \uc815\uccb4 - \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\/25646\/\" \/>\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: 6.5 \ud074\ub798\uc2a4\uc640 \uc704\uc82f\uc758 \uc815\uccb4 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"\ud50c\ub7ec\ud130\ub294 \ubaa8\ubc14\uc77c, \uc6f9, \ub370\uc2a4\ud06c\ud0d1 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uc27d\uac8c \uc81c\uc791\ud560 \uc218 \uc788\ub3c4\ub85d \ub3d5\ub294 UI \ud234\ud0b7\uc785\ub2c8\ub2e4. \uc774\ubc88 \uac15\uc88c\uc5d0\uc11c\ub294 \ud50c\ub7ec\ud130\uc758 \ud575\uc2ec \uac1c\ub150\uc778 &#8216;\ud074\ub798\uc2a4&#8217;\uc640 &#8216;\uc704\uc82f&#8217;\uc758 \uc815\uccb4\ub97c \uc2ec\ub3c4 \uc788\uac8c \uc54c\uc544\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1. \ud074\ub798\uc2a4(Class)\uc758 \uc774\ud574 \ud074\ub798\uc2a4\ub294 \uac1d\uccb4 \uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d(OOP)\uc758 \uae30\ubcf8 \ub2e8\uc704\ub85c, \uac1d\uccb4\uc758 \uc124\uacc4\ub3c4\ub97c \uc81c\uacf5\ud569\ub2c8\ub2e4. \ub2e4\ud2b8(Dart) \uc5b8\uc5b4\uc5d0\uc11c \ud074\ub798\uc2a4\ub294 \ub370\uc774\ud130 \ud544\ub4dc\uc640 \uba54\uc18c\ub4dc\ub97c \ud3ec\ud568\ud560 \uc218 \uc788\ub294 \uad6c\uc870\uccb4\uc785\ub2c8\ub2e4. \ud074\ub798\uc2a4\ub294 \uac1d\uccb4\ub97c \uc0dd\uc131\ud558\uae30 \uc704\ud55c \ud2c0\uc744 \uc81c\uacf5\ud558\uba70, \uac01 \uac1d\uccb4\ub294 \ud074\ub798\uc2a4\uc758 \uc18d\uc131\uacfc &hellip; \ub354 \ubcf4\uae30 &quot;\ud50c\ub7ec\ud130 \uac15\uc88c: 6.5 \ud074\ub798\uc2a4\uc640 \uc704\uc82f\uc758 \uc815\uccb4&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/25646\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-10-26T13:51:21+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-26T08:00:35+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\/25646\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/25646\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"\ud50c\ub7ec\ud130 \uac15\uc88c: 6.5 \ud074\ub798\uc2a4\uc640 \uc704\uc82f\uc758 \uc815\uccb4\",\"datePublished\":\"2024-10-26T13:51:21+00:00\",\"dateModified\":\"2024-11-26T08:00:35+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/25646\/\"},\"wordCount\":34,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"\ud50c\ub7ec\ud130 \uac15\uc88c\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/25646\/\",\"url\":\"https:\/\/atmokpo.com\/w\/25646\/\",\"name\":\"\ud50c\ub7ec\ud130 \uac15\uc88c: 6.5 \ud074\ub798\uc2a4\uc640 \uc704\uc82f\uc758 \uc815\uccb4 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-10-26T13:51:21+00:00\",\"dateModified\":\"2024-11-26T08:00:35+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/25646\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/25646\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/25646\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud50c\ub7ec\ud130 \uac15\uc88c: 6.5 \ud074\ub798\uc2a4\uc640 \uc704\uc82f\uc758 \uc815\uccb4\"}]},{\"@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: 6.5 \ud074\ub798\uc2a4\uc640 \uc704\uc82f\uc758 \uc815\uccb4 - \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\/25646\/","og_locale":"ko_KR","og_type":"article","og_title":"\ud50c\ub7ec\ud130 \uac15\uc88c: 6.5 \ud074\ub798\uc2a4\uc640 \uc704\uc82f\uc758 \uc815\uccb4 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"\ud50c\ub7ec\ud130\ub294 \ubaa8\ubc14\uc77c, \uc6f9, \ub370\uc2a4\ud06c\ud0d1 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uc27d\uac8c \uc81c\uc791\ud560 \uc218 \uc788\ub3c4\ub85d \ub3d5\ub294 UI \ud234\ud0b7\uc785\ub2c8\ub2e4. \uc774\ubc88 \uac15\uc88c\uc5d0\uc11c\ub294 \ud50c\ub7ec\ud130\uc758 \ud575\uc2ec \uac1c\ub150\uc778 &#8216;\ud074\ub798\uc2a4&#8217;\uc640 &#8216;\uc704\uc82f&#8217;\uc758 \uc815\uccb4\ub97c \uc2ec\ub3c4 \uc788\uac8c \uc54c\uc544\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1. \ud074\ub798\uc2a4(Class)\uc758 \uc774\ud574 \ud074\ub798\uc2a4\ub294 \uac1d\uccb4 \uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d(OOP)\uc758 \uae30\ubcf8 \ub2e8\uc704\ub85c, \uac1d\uccb4\uc758 \uc124\uacc4\ub3c4\ub97c \uc81c\uacf5\ud569\ub2c8\ub2e4. \ub2e4\ud2b8(Dart) \uc5b8\uc5b4\uc5d0\uc11c \ud074\ub798\uc2a4\ub294 \ub370\uc774\ud130 \ud544\ub4dc\uc640 \uba54\uc18c\ub4dc\ub97c \ud3ec\ud568\ud560 \uc218 \uc788\ub294 \uad6c\uc870\uccb4\uc785\ub2c8\ub2e4. \ud074\ub798\uc2a4\ub294 \uac1d\uccb4\ub97c \uc0dd\uc131\ud558\uae30 \uc704\ud55c \ud2c0\uc744 \uc81c\uacf5\ud558\uba70, \uac01 \uac1d\uccb4\ub294 \ud074\ub798\uc2a4\uc758 \uc18d\uc131\uacfc &hellip; \ub354 \ubcf4\uae30 \"\ud50c\ub7ec\ud130 \uac15\uc88c: 6.5 \ud074\ub798\uc2a4\uc640 \uc704\uc82f\uc758 \uc815\uccb4\"","og_url":"https:\/\/atmokpo.com\/w\/25646\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-10-26T13:51:21+00:00","article_modified_time":"2024-11-26T08:00:35+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\/25646\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/25646\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"\ud50c\ub7ec\ud130 \uac15\uc88c: 6.5 \ud074\ub798\uc2a4\uc640 \uc704\uc82f\uc758 \uc815\uccb4","datePublished":"2024-10-26T13:51:21+00:00","dateModified":"2024-11-26T08:00:35+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/25646\/"},"wordCount":34,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["\ud50c\ub7ec\ud130 \uac15\uc88c"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/25646\/","url":"https:\/\/atmokpo.com\/w\/25646\/","name":"\ud50c\ub7ec\ud130 \uac15\uc88c: 6.5 \ud074\ub798\uc2a4\uc640 \uc704\uc82f\uc758 \uc815\uccb4 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-10-26T13:51:21+00:00","dateModified":"2024-11-26T08:00:35+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/25646\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/25646\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/25646\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"\ud50c\ub7ec\ud130 \uac15\uc88c: 6.5 \ud074\ub798\uc2a4\uc640 \uc704\uc82f\uc758 \uc815\uccb4"}]},{"@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":43485,"url":"https:\/\/atmokpo.com\/w\/43485\/","url_meta":{"origin":25646,"position":0},"title":"[Dart \uc5b8\uc5b4\uac15\uc88c]  009. \uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d (OOP) \uc18c\uac1c, \uc0c1\uc18d\uacfc \ub2e4\ud615\uc131","author":"root","date":"2024\ub144 11\uc6d4 28\uc77c","format":false,"excerpt":"\uc800\uc790: \ub2f9\uc2e0\uc758 \uc774\ub984 \uc791\uc131\uc77c: YYYY-MM-DD 1. \uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d (OOP)\ub780? \uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d(Object-Oriented Programming, OOP)\uc740 \ud504\ub85c\uadf8\ub7a8\uc744 '\uac1d\uccb4'\ub85c \uad6c\uc131\ud558\uc5ec \uc18c\ud504\ud2b8\uc6e8\uc5b4\ub97c \uc124\uacc4\ud558\uace0 \uac1c\ubc1c\ud558\ub294 \ud504\ub85c\uadf8\ub798\ubc0d \ud328\ub7ec\ub2e4\uc784\uc785\ub2c8\ub2e4. \uc774 \uac1d\uccb4\ub294 \ub370\uc774\ud130\uc640 \ub370\uc774\ud130\uc5d0 \ub300\ud55c \ucc98\ub9ac\ub97c \ud3ec\ud568\ud55c \uba54\uc11c\ub4dc\ub85c \uad6c\uc131\ub429\ub2c8\ub2e4. OOP\uc758 \uc8fc\uc694 \uc6d0\uce59\uc73c\ub85c\ub294 \ucea1\uc290\ud654(Encapsulation), \uc0c1\uc18d(Inheritance), \ub2e4\ud615\uc131(Polymorphism) \ubc0f \ucd94\uc0c1\ud654(Abstraction)\uac00 \uc788\uc2b5\ub2c8\ub2e4. OOP\uc758 \uc7a5\uc810\uc740 \ucf54\ub4dc\uc758 \uc7ac\uc0ac\uc6a9\uc131, \uac00\ub3c5\uc131 \ubc0f \uc720\uc9c0\ubcf4\uc218\uc131\uc744 \ub192\uc5ec\uc90d\ub2c8\ub2e4. Dart \uc5b8\uc5b4\ub294 OOP\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":25676,"url":"https:\/\/atmokpo.com\/w\/25676\/","url_meta":{"origin":25646,"position":1},"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":43487,"url":"https:\/\/atmokpo.com\/w\/43487\/","url_meta":{"origin":25646,"position":2},"title":"[Dart \uc5b8\uc5b4\uac15\uc88c]  010. \uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d (OOP) \uc18c\uac1c, \ucd94\uc0c1 \ud074\ub798\uc2a4\uc640 \uc778\ud130\ud398\uc774\uc2a4","author":"root","date":"2024\ub144 11\uc6d4 28\uc77c","format":false,"excerpt":"\ud504\ub85c\uadf8\ub7a8\uc744 \uad6c\uc870\uc801\uc774\uace0 \ud6a8\uc728\uc801\uc73c\ub85c \uc791\uc131\ud558\ub294 \ub370 \uc911\uc694\ud55c \uac1c\ub150 \uc911 \ud558\ub098\ub294 \uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d(Object-Oriented Programming, OOP)\uc785\ub2c8\ub2e4. Dart \uc5b8\uc5b4\ub294 \uc774\ub7ec\ud55c OOP \uac1c\ub150\uc744 \ubc14\ud0d5\uc73c\ub85c \uc124\uacc4\ub41c \uc5b8\uc5b4\ub85c, \ucf54\ub4dc\ub97c \uc7ac\uc0ac\uc6a9\ud558\uace0 \uc720\uc9c0\ubcf4\uc218\ud558\uae30 \uc27d\uac8c \ub9cc\ub4e4\uc5b4 \uc90d\ub2c8\ub2e4. OOP\uc758 \uc911\uc694\ud55c \uad6c\uc131 \uc694\uc18c\uc778 \ucd94\uc0c1 \ud074\ub798\uc2a4\uc640 \uc778\ud130\ud398\uc774\uc2a4\ub97c \uc0b4\ud3b4\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1. \uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d(OOP) \uac1c\ub150 \uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d\uc740 \ud504\ub85c\uadf8\ub7a8\uc744 '\uac1d\uccb4'\ub77c\ub294 \ub3c5\ub9bd\uc801\uc778 \ub2e8\uc704\ub85c \uad6c\uc131\ud558\uc5ec \ubb38\uc81c\ub97c \ud574\uacb0\ud558\ub294 \ubc29\uc2dd\uc785\ub2c8\ub2e4. \uac1d\uccb4\ub294\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":43483,"url":"https:\/\/atmokpo.com\/w\/43483\/","url_meta":{"origin":25646,"position":3},"title":"[Dart \uc5b8\uc5b4\uac15\uc88c]  008. \uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d (OOP) \uc18c\uac1c, \ud074\ub798\uc2a4\uc640 \uac1d\uccb4","author":"root","date":"2024\ub144 11\uc6d4 28\uc77c","format":false,"excerpt":"\uc791\uc131\uc790: \uc870\uad11\ud615 \uc791\uc131\uc77c: 2024\ub144 11\uc6d4 28\uc77c 1. \uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d (OOP)\ub780? \uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d(Object-Oriented Programming, OOP)\uc740 \ud504\ub85c\uadf8\ub7a8\uc744 \uac1d\uccb4\ub97c \uc911\uc2ec\uc73c\ub85c \uad6c\uc131\ud558\ub294 \ud504\ub85c\uadf8\ub798\ubc0d \ud328\ub7ec\ub2e4\uc784\uc785\ub2c8\ub2e4. \uac1d\uccb4\ub294 \ub370\uc774\ud130\uc640 \uc774 \ub370\uc774\ud130\ub97c \ub2e4\ub8e8\ub294 \ud568\uc218\ub97c \ucea1\uc290\ud654\ud558\uc5ec \uc18c\ud504\ud2b8\uc6e8\uc5b4\uc758 \ubcf5\uc7a1\uc131\uc744 \uc904\uc774\uace0 \ucf54\ub4dc\uc758 \uc7ac\uc0ac\uc6a9\uc131\uc744 \ub192\uc774\ub294 \ub370 \uae30\uc5ec\ud569\ub2c8\ub2e4. OOP\uc758\u6838\u5fc3 \uac1c\ub150\uc740 \ub2e4\uc74c\uacfc \uac19\uc2b5\ub2c8\ub2e4: \ucea1\uc290\ud654(Encapsulation): \ub370\uc774\ud130\uc640 \uba54\uc11c\ub4dc\ub97c \ud558\ub098\uc758 \ub2e8\uc704\ub85c \ubb36\uc5b4 \uc678\ubd80\ub85c\ubd80\ud130 \ubcf4\ud638\ud569\ub2c8\ub2e4. \uc774\ub97c \ud1b5\ud574 \uac1d\uccb4\uc758\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":30545,"url":"https:\/\/atmokpo.com\/w\/30545\/","url_meta":{"origin":25646,"position":4},"title":"\ucf54\ud2c0\ub9b0 \uc548\ub4dc\ub85c\uc774\ub4dc \uc571\uac1c\ubc1c \uac15\uc88c, \ud2c0\ub9b0 \uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d","author":"root","date":"2024\ub144 10\uc6d4 28\uc77c","format":false,"excerpt":"\ucd5c\uadfc \ubaa8\ubc14\uc77c \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uac1c\ubc1c\uc774 \ud65c\uc131\ud654\ub418\uace0, \uadf8 \uc911\uc5d0\uc11c\ub3c4 \uc548\ub4dc\ub85c\uc774\ub4dc \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uac1c\ubc1c\uc774 \uc8fc\ubaa9\ubc1b\uace0 \uc788\uc2b5\ub2c8\ub2e4. \ucf54\ud2c0\ub9b0(Kotlin)\uc740 \uad6c\uae00\uc774 \uacf5\uc2dd\uc801\uc73c\ub85c \uc9c0\uc6d0\ud558\ub294 \uc548\ub4dc\ub85c\uc774\ub4dc \uc571 \uac1c\ubc1c \uc5b8\uc5b4\ub85c, \uac04\uacb0\ud558\uace0 \uc548\uc804\ud55c \ubb38\ubc95\uc73c\ub85c \ub9ce\uc740 \uac1c\ubc1c\uc790\ub4e4\uc5d0\uac8c \uc0ac\ub791\ubc1b\uace0 \uc788\uc2b5\ub2c8\ub2e4. \uc774\ubc88 \uac15\uc88c\uc5d0\uc11c\ub294 \uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d(OOP)\uc758 \uae30\ubcf8 \uac1c\ub150\uc744 \uc54c\uc544\ubcf4\uace0, \uc774\ub97c \ucf54\ud2c0\ub9b0\uc744 \ud65c\uc6a9\ud55c \uc548\ub4dc\ub85c\uc774\ub4dc \uc571 \uac1c\ubc1c\uc5d0 \uc5b4\ub5bb\uac8c \uc801\uc6a9\ud560 \uc218 \uc788\ub294\uc9c0 \uc0b4\ud3b4\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. \ud2b9\ud788 '\ud2c0\ub9b0 \uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d'\uc774\ub77c\ub294 \uc8fc\uc81c\ub97c\u2026","rel":"","context":"&quot;\ucf54\ud2c0\ub9b0 \uc548\ub4dc\ub85c\uc774\ub4dc\uc571 \uac1c\ubc1c&quot;\uc5d0\uc11c","block_context":{"text":"\ucf54\ud2c0\ub9b0 \uc548\ub4dc\ub85c\uc774\ub4dc\uc571 \uac1c\ubc1c","link":"https:\/\/atmokpo.com\/w\/category\/%ec%bd%94%ed%8b%80%eb%a6%b0-%ec%95%88%eb%93%9c%eb%a1%9c%ec%9d%b4%eb%93%9c%ec%95%b1-%ea%b0%9c%eb%b0%9c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":43501,"url":"https:\/\/atmokpo.com\/w\/43501\/","url_meta":{"origin":25646,"position":5},"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":[]}],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/25646","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=25646"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/25646\/revisions"}],"predecessor-version":[{"id":25647,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/25646\/revisions\/25647"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=25646"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=25646"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=25646"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}