{"id":25528,"date":"2024-10-26T13:50:39","date_gmt":"2024-10-26T13:50:39","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=25528"},"modified":"2024-11-26T08:01:29","modified_gmt":"2024-11-26T08:01:29","slug":"%ed%94%8c%eb%9f%ac%ed%84%b0-%ea%b0%95%ec%a2%8c-12-4-mediaquery-ofcontext","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/25528\/","title":{"rendered":"\ud50c\ub7ec\ud130 \uac15\uc88c: 12.4 MediaQuery.of(context)"},"content":{"rendered":"<p><body><\/p>\n<p>\ud50c\ub7ec\ud130\ub294 \ub2e4\uc591\ud55c \ud50c\ub7ab\ud3fc\uc5d0\uc11c \uc77c\uad00\ub41c \uc0ac\uc6a9\uc790 \uc778\ud130\ud398\uc774\uc2a4\ub97c \uc81c\uacf5\ud558\uae30 \uc704\ud574 \uc5ec\ub7ec \uc704\uc82f\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4. \uadf8 \uc911\uc5d0\uc11c\ub3c4 <strong>MediaQuery<\/strong>\ub294 \uae30\uae30\uc758 \ud654\uba74 \ud06c\uae30, \ubc29\ud5a5, \ud574\uc0c1\ub3c4 \ub4f1 \ub2e4\uc591\ud55c \uc815\ubcf4\ub97c \uac00\uc838\uc624\ub294 \ub370 \uc0ac\uc6a9\ub429\ub2c8\ub2e4. \uc774 \uac15\uc88c\uc5d0\uc11c\ub294 <code>MediaQuery.of(context)<\/code>\ub97c \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95\uc744 \uc790\uc138\ud788 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4.<\/p>\n<h2>1. MediaQuery\ub780?<\/h2>\n<p>MediaQuery\ub294 Flutter\uc758 \ube4c\ud2b8\uc778 \uc704\uc82f \uc911 \ud558\ub098\ub85c, \uc571\uc758 UI\uac00 \ub514\ubc14\uc774\uc2a4\uc758 \ud654\uba74 \ud06c\uae30 \ubc0f \uc18d\uc131\uc5d0 \ub9de\ucdb0 \uc870\uc815\ub420 \uc218 \uc788\ub3c4\ub85d \ub3c4\uc640\uc90d\ub2c8\ub2e4. \uae30\uae30\uac00 \uc5b4\ub5a4 \ud658\uacbd\uc5d0 \uc788\ub294\uc9c0\ub97c \ud30c\uc545\ud558\uc5ec UI\ub97c \ucd5c\uc801\ud654\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<h2>2. MediaQuery.of(context)\uc758 \uae30\ubcf8 \uc0ac\uc6a9\ubc95<\/h2>\n<p><code>MediaQuery.of(context)<\/code>\ub97c \uc0ac\uc6a9\ud558\uba74 \ud604\uc7ac\uc758 BuildContext\uc5d0 \ub300\ud55c MediaQueryData\ub97c \uac00\uc838\uc62c \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc608\ub97c \ub4e4\uc5b4, \ud654\uba74\uc758 \ub108\ube44\uc640 \ub192\uc774\ub97c \uac00\uc838\uc624\ub294 \ubc29\ubc95\uc740 \ub2e4\uc74c\uacfc \uac19\uc2b5\ub2c8\ub2e4:<\/p>\n<pre><code>\n    var mediaQuery = MediaQuery.of(context);\n    var screenWidth = mediaQuery.size.width;\n    var screenHeight = mediaQuery.size.height;\n    <\/code><\/pre>\n<h2>3. MediaQuery\ub97c \ud65c\uc6a9\ud55c \ub808\uc774\uc544\uc6c3 \uad6c\uc131\ud558\uae30<\/h2>\n<p>\ubbf8\ub514\uc5b4 \ucffc\ub9ac\ub97c \ud65c\uc6a9\ud558\uc5ec \ub2e4\uc591\ud55c \ud654\uba74 \ud06c\uae30\uc5d0\uc11c \uc801\uc808\ud55c \ub808\uc774\uc544\uc6c3\uc744 \uad6c\uc131\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc608\ub97c \ub4e4\uc5b4, \ud654\uba74\uc758 \ud06c\uae30\uc5d0 \ub530\ub77c \ub2e4\ub978 \uc704\uc82f\uc744 \ud45c\uc2dc\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<pre><code>\n    @override\n    Widget build(BuildContext context) {\n        var screenWidth = MediaQuery.of(context).size.width;\n        return Scaffold(\n            appBar: AppBar(title: Text('MediaQuery \uc608\uc81c')),\n            body: Center(\n                child: screenWidth &lt; 600\n                    ? Text('\uc791\uc740 \ud654\uba74')\n                    : Text('\ud070 \ud654\uba74'),\n            ),\n        );\n    }\n    <\/code><\/pre>\n<h2>4. \ub3d9\uc801 UI \uc124\uacc4\ub97c \uc704\ud55c MediaQuery \ud65c\uc6a9\ud558\uae30<\/h2>\n<p>\ud50c\ub7ec\ud130\uc5d0\uc11c\ub294 \ub2e4\uc591\ud55c \ud654\uba74 \ud06c\uae30\uc5d0 \ub9de\ucdb0 \ub3d9\uc801\uc73c\ub85c UI\ub97c \uc124\uacc4\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc544\ub798 \uc608\uc81c\ub294 \ud654\uba74 \ud06c\uae30\uc5d0 \ub530\ub77c Padding\uc744 \ub2ec\ub9ac\ud558\ub294 \uc608\uc81c\uc785\ub2c8\ub2e4.<\/p>\n<pre><code>\n    @override\n    Widget build(BuildContext context) {\n        var padding = MediaQuery.of(context).size.width &lt; 600 ? EdgeInsets.all(20) : EdgeInsets.all(50);\n        return Padding(\n            padding: padding,\n            child: Text('Dynamic Padding Example'),\n        );\n    }\n    <\/code><\/pre>\n<h2>5. MediaQueryData \uc18d\uc131 \uc124\uba85<\/h2>\n<p>MediaQueryData\ub294 \ub2e4\uc591\ud55c \uc18d\uc131\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4. \uc5ec\uae30\uc5d0 \ub300\ud55c \uc124\uba85\uc740 \ub2e4\uc74c\uacfc \uac19\uc2b5\ub2c8\ub2e4:<\/p>\n<ul>\n<li><code>size<\/code>: \ub514\ubc14\uc774\uc2a4\uc758 \ud654\uba74 \ud06c\uae30 (Width, Height)<\/li>\n<li><code>orientation<\/code>: \ub514\ubc14\uc774\uc2a4\uc758 \ubc29\ud5a5 (\uc138\ub85c, \uac00\ub85c)<\/li>\n<li><code>devicePixelRatio<\/code>: \ud654\uba74\uc758 \ud53d\uc140 \ubc00\ub3c4<\/li>\n<li><code>padding<\/code>: \ud654\uba74\uc758 \uc5ec\ubc31 (Safe Area)<\/li>\n<li><code>viewInsets<\/code>: \uc18c\ud504\ud2b8\uc6e8\uc5b4 \ud0a4\ubcf4\ub4dc\uc640 \uac19\uc740 UI \uc694\uc18c\ub85c \uc778\ud574 \uc601\ud5a5\uc744 \ubc1b\ub294 \ud654\uba74\uc758 \ubd80\ubd84<\/li>\n<\/ul>\n<h2>6. MediaQuery\uc758 \ud65c\uc6a9 \uc0ac\ub840<\/h2>\n<p>\uc2e4\uc81c \uc571\uc5d0\uc11c MediaQuery\ub97c \uc0ac\uc6a9\ud558\ub294 \uba87 \uac00\uc9c0 \uc0ac\ub840\ub97c \uc18c\uac1c\ud569\ub2c8\ub2e4. \uc8fc\uc694 \uc0ac\ub840\uc5d0\ub294 \ubc18\uc751\ud615 \ub514\uc790\uc778, \ub2e4\uc591\ud55c \ub514\ubc14\uc774\uc2a4 \uc9c0\uc6d0, \ub3d9\uc801 \ub808\uc774\uc544\uc6c3 \uc870\uc815 \ub4f1\uc774 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<h3>6.1 \ubc18\uc751\ud615 \ub514\uc790\uc778 \uc608\uc81c<\/h3>\n<p>\ubc18\uc751\ud615 \ub514\uc790\uc778\uc744 \ud65c\uc6a9\ud55c \uc571\uc758 \uc608\ub85c\ub294, \ud654\uba74\uc758 \uac00\ub85c \ud06c\uae30\uc5d0 \ub530\ub77c \ub9ac\uc2a4\ud2b8 \ubdf0\uc758 \uc544\uc774\ud15c \uc218\ub97c \uc870\uc808\ud558\ub294 \uac83\uc785\ub2c8\ub2e4. \uc5ec\uae30\uc11c\ub294 \uc5f4\uc758 \uc218\ub97c \ub3d9\uc801\uc73c\ub85c \ubcc0\uacbd\ud558\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4.<\/p>\n<h3>6.2 \ub2e4\uc591\ud55c \ub514\ubc14\uc774\uc2a4 \uc9c0\uc6d0<\/h3>\n<p>MediaQuery\ub97c \ud65c\uc6a9\ud558\uba74 \ub2e4\uc591\ud55c \ud574\uc0c1\ub3c4\uc640 \ud654\uba74 \ube44\uc728\uc744 \uc9c0\uc6d0\ud558\ub294 \uc571\uc744 \uc27d\uac8c \uc124\uacc4\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc608\ub97c \ub4e4\uc5b4, \uac01 \ub514\ubc14\uc774\uc2a4\uc758 \ud2b9\uc131\uc5d0 \ub9de\ub294 UI \uc694\uc18c\ub97c \uc0dd\uc131\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<h2>7. \uacb0\ub860<\/h2>\n<p>MediaQuery\ub294 \ud50c\ub7ec\ud130\uc5d0\uc11c \ub514\ubc14\uc774\uc2a4\uc758 \ud658\uacbd\uc5d0 \ub9de\ucd98 \ub808\uc774\uc544\uc6c3\uc744 \uad6c\uc131\ud558\ub294 \ub370 \ub9e4\uc6b0 \uc911\uc694\ud55c \uc694\uc18c\uc785\ub2c8\ub2e4. \uc774 \uac15\uc88c\ub97c \ud1b5\ud574 MediaQuery.of(context)\uc758 \uae30\ubcf8 \uc0ac\uc6a9\ubc95\uacfc \ud65c\uc6a9 \uc0ac\ub840\ub97c \ubc30\uc6e0\uc2b5\ub2c8\ub2e4. \ub354 \ub9ce\uc740 \uae30\ub2a5\uacfc \uc751\uc6a9 \uc0ac\ub840\ub97c \uc2e4\ud5d8\ud574 \ubcf4\uc2dc\uae30 \ubc14\ub78d\ub2c8\ub2e4.<\/p>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\ud50c\ub7ec\ud130\ub294 \ub2e4\uc591\ud55c \ud50c\ub7ab\ud3fc\uc5d0\uc11c \uc77c\uad00\ub41c \uc0ac\uc6a9\uc790 \uc778\ud130\ud398\uc774\uc2a4\ub97c \uc81c\uacf5\ud558\uae30 \uc704\ud574 \uc5ec\ub7ec \uc704\uc82f\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4. \uadf8 \uc911\uc5d0\uc11c\ub3c4 MediaQuery\ub294 \uae30\uae30\uc758 \ud654\uba74 \ud06c\uae30, \ubc29\ud5a5, \ud574\uc0c1\ub3c4 \ub4f1 \ub2e4\uc591\ud55c \uc815\ubcf4\ub97c \uac00\uc838\uc624\ub294 \ub370 \uc0ac\uc6a9\ub429\ub2c8\ub2e4. \uc774 \uac15\uc88c\uc5d0\uc11c\ub294 MediaQuery.of(context)\ub97c \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95\uc744 \uc790\uc138\ud788 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4. 1. MediaQuery\ub780? MediaQuery\ub294 Flutter\uc758 \ube4c\ud2b8\uc778 \uc704\uc82f \uc911 \ud558\ub098\ub85c, \uc571\uc758 UI\uac00 \ub514\ubc14\uc774\uc2a4\uc758 \ud654\uba74 \ud06c\uae30 \ubc0f \uc18d\uc131\uc5d0 \ub9de\ucdb0 \uc870\uc815\ub420 \uc218 \uc788\ub3c4\ub85d \ub3c4\uc640\uc90d\ub2c8\ub2e4. \uae30\uae30\uac00 \uc5b4\ub5a4 \ud658\uacbd\uc5d0 &hellip; <a href=\"https:\/\/atmokpo.com\/w\/25528\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;\ud50c\ub7ec\ud130 \uac15\uc88c: 12.4 MediaQuery.of(context)&#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-25528","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: 12.4 MediaQuery.of(context) - \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\/25528\/\" \/>\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: 12.4 MediaQuery.of(context) - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"\ud50c\ub7ec\ud130\ub294 \ub2e4\uc591\ud55c \ud50c\ub7ab\ud3fc\uc5d0\uc11c \uc77c\uad00\ub41c \uc0ac\uc6a9\uc790 \uc778\ud130\ud398\uc774\uc2a4\ub97c \uc81c\uacf5\ud558\uae30 \uc704\ud574 \uc5ec\ub7ec \uc704\uc82f\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4. \uadf8 \uc911\uc5d0\uc11c\ub3c4 MediaQuery\ub294 \uae30\uae30\uc758 \ud654\uba74 \ud06c\uae30, \ubc29\ud5a5, \ud574\uc0c1\ub3c4 \ub4f1 \ub2e4\uc591\ud55c \uc815\ubcf4\ub97c \uac00\uc838\uc624\ub294 \ub370 \uc0ac\uc6a9\ub429\ub2c8\ub2e4. \uc774 \uac15\uc88c\uc5d0\uc11c\ub294 MediaQuery.of(context)\ub97c \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95\uc744 \uc790\uc138\ud788 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4. 1. MediaQuery\ub780? MediaQuery\ub294 Flutter\uc758 \ube4c\ud2b8\uc778 \uc704\uc82f \uc911 \ud558\ub098\ub85c, \uc571\uc758 UI\uac00 \ub514\ubc14\uc774\uc2a4\uc758 \ud654\uba74 \ud06c\uae30 \ubc0f \uc18d\uc131\uc5d0 \ub9de\ucdb0 \uc870\uc815\ub420 \uc218 \uc788\ub3c4\ub85d \ub3c4\uc640\uc90d\ub2c8\ub2e4. \uae30\uae30\uac00 \uc5b4\ub5a4 \ud658\uacbd\uc5d0 &hellip; \ub354 \ubcf4\uae30 &quot;\ud50c\ub7ec\ud130 \uac15\uc88c: 12.4 MediaQuery.of(context)&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/25528\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-10-26T13:50:39+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-26T08:01:29+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\/25528\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/25528\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"\ud50c\ub7ec\ud130 \uac15\uc88c: 12.4 MediaQuery.of(context)\",\"datePublished\":\"2024-10-26T13:50:39+00:00\",\"dateModified\":\"2024-11-26T08:01:29+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/25528\/\"},\"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\/25528\/\",\"url\":\"https:\/\/atmokpo.com\/w\/25528\/\",\"name\":\"\ud50c\ub7ec\ud130 \uac15\uc88c: 12.4 MediaQuery.of(context) - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-10-26T13:50:39+00:00\",\"dateModified\":\"2024-11-26T08:01:29+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/25528\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/25528\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/25528\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud50c\ub7ec\ud130 \uac15\uc88c: 12.4 MediaQuery.of(context)\"}]},{\"@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: 12.4 MediaQuery.of(context) - \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\/25528\/","og_locale":"ko_KR","og_type":"article","og_title":"\ud50c\ub7ec\ud130 \uac15\uc88c: 12.4 MediaQuery.of(context) - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"\ud50c\ub7ec\ud130\ub294 \ub2e4\uc591\ud55c \ud50c\ub7ab\ud3fc\uc5d0\uc11c \uc77c\uad00\ub41c \uc0ac\uc6a9\uc790 \uc778\ud130\ud398\uc774\uc2a4\ub97c \uc81c\uacf5\ud558\uae30 \uc704\ud574 \uc5ec\ub7ec \uc704\uc82f\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4. \uadf8 \uc911\uc5d0\uc11c\ub3c4 MediaQuery\ub294 \uae30\uae30\uc758 \ud654\uba74 \ud06c\uae30, \ubc29\ud5a5, \ud574\uc0c1\ub3c4 \ub4f1 \ub2e4\uc591\ud55c \uc815\ubcf4\ub97c \uac00\uc838\uc624\ub294 \ub370 \uc0ac\uc6a9\ub429\ub2c8\ub2e4. \uc774 \uac15\uc88c\uc5d0\uc11c\ub294 MediaQuery.of(context)\ub97c \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95\uc744 \uc790\uc138\ud788 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4. 1. MediaQuery\ub780? MediaQuery\ub294 Flutter\uc758 \ube4c\ud2b8\uc778 \uc704\uc82f \uc911 \ud558\ub098\ub85c, \uc571\uc758 UI\uac00 \ub514\ubc14\uc774\uc2a4\uc758 \ud654\uba74 \ud06c\uae30 \ubc0f \uc18d\uc131\uc5d0 \ub9de\ucdb0 \uc870\uc815\ub420 \uc218 \uc788\ub3c4\ub85d \ub3c4\uc640\uc90d\ub2c8\ub2e4. \uae30\uae30\uac00 \uc5b4\ub5a4 \ud658\uacbd\uc5d0 &hellip; \ub354 \ubcf4\uae30 \"\ud50c\ub7ec\ud130 \uac15\uc88c: 12.4 MediaQuery.of(context)\"","og_url":"https:\/\/atmokpo.com\/w\/25528\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-10-26T13:50:39+00:00","article_modified_time":"2024-11-26T08:01:29+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\/25528\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/25528\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"\ud50c\ub7ec\ud130 \uac15\uc88c: 12.4 MediaQuery.of(context)","datePublished":"2024-10-26T13:50:39+00:00","dateModified":"2024-11-26T08:01:29+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/25528\/"},"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\/25528\/","url":"https:\/\/atmokpo.com\/w\/25528\/","name":"\ud50c\ub7ec\ud130 \uac15\uc88c: 12.4 MediaQuery.of(context) - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-10-26T13:50:39+00:00","dateModified":"2024-11-26T08:01:29+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/25528\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/25528\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/25528\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"\ud50c\ub7ec\ud130 \uac15\uc88c: 12.4 MediaQuery.of(context)"}]},{"@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":25528,"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":25528,"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":43408,"url":"https:\/\/atmokpo.com\/w\/43408\/","url_meta":{"origin":25528,"position":2},"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":25862,"url":"https:\/\/atmokpo.com\/w\/25862\/","url_meta":{"origin":25528,"position":3},"title":"\uc2a4\uc704\ud504\ud2b8\ub85c SwiftUI \ubc29\uc2dd, \uc544\uc774\ud3f0 \uc571 \uac1c\ubc1c, \ud655\ub300\/\ucd95\uc18c \uae30\ub2a5 \ucd94\uac00\ud558\uae30","author":"root","date":"2024\ub144 10\uc6d4 27\uc77c","format":false,"excerpt":"\uc791\uc131\uc790: \uc870\uad11\ud615 \ub0a0\uc9dc: 2024\ub144 11\uc6d4 26\uc77c 1. \uc11c\ub860 \uc624\ub298\ub0a0 \ubaa8\ubc14\uc77c \uc571\uc740 \uc6b0\ub9ac\uc758 \uc0b6\uc5d0\uc11c \ub9e4\uc6b0 \uc911\uc694\ud55c \uc5ed\ud560\uc744 \ud558\uace0 \uc788\uc2b5\ub2c8\ub2e4. \ud2b9\ud788 \uc544\uc774\ud3f0\uacfc \uac19\uc740 \uc2a4\ub9c8\ud2b8\ud3f0\uc774 \ub300\uc911\ud654\ub418\uba74\uc11c, \ub354 \ub9ce\uc740 \uac1c\ubc1c\uc790\ub4e4\uc774 iOS \uc571 \uac1c\ubc1c\uc5d0 \ub3c4\uc804\ud558\uace0 \uc788\uc2b5\ub2c8\ub2e4. SwiftUI\ub294 \uc560\ud50c\uc758 \ucd5c\uc2e0 UI \ud504\ub808\uc784\uc6cc\ud06c\ub85c, \ube44\uad50\uc801 \uac04\ud3b8\ud558\uac8c \uc0ac\uc6a9\uc790 \uc778\ud130\ud398\uc774\uc2a4\ub97c \uad6c\uc131\ud560 \uc218 \uc788\uac8c \ud574\uc90d\ub2c8\ub2e4. \ubcf8 \uac15\uc88c\uc5d0\uc11c\ub294 SwiftUI\ub97c \ud65c\uc6a9\ud558\uc5ec \uc544\uc774\ud3f0 \uc571\uc5d0\u2026","rel":"","context":"&quot;\uc2a4\uc704\ud504\ud2b8 \uc544\uc774\ud3f0\uc571 \uac1c\ubc1c (SwiftUI)&quot;\uc5d0\uc11c","block_context":{"text":"\uc2a4\uc704\ud504\ud2b8 \uc544\uc774\ud3f0\uc571 \uac1c\ubc1c (SwiftUI)","link":"https:\/\/atmokpo.com\/w\/category\/%ec%8a%a4%ec%9c%84%ed%94%84%ed%8a%b8-%ec%95%84%ec%9d%b4%ed%8f%b0%ec%95%b1-%ea%b0%9c%eb%b0%9c-swiftui\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":43392,"url":"https:\/\/atmokpo.com\/w\/43392\/","url_meta":{"origin":25528,"position":4},"title":"[\uc544\ud30c\uce58 \ucf54\ub974\ub3c4\ubc14]  \uc544\ud30c\uce58 \ucf54\ub974\ub3c4\ubc14\uc5d0\uc11c\uc758 \ubc18\uc751\ud615 \ub514\uc790\uc778 \uad6c\ud604","author":"root","date":"2024\ub144 11\uc6d4 27\uc77c","format":false,"excerpt":"\uc624\ub298\ub0a0 \ubaa8\ubc14\uc77c \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc740 \ub2e4\uc591\ud55c \ud654\uba74 \ud06c\uae30\uc640 \ud574\uc0c1\ub3c4\ub97c \uac00\uc9c4 \uae30\uae30\uc5d0\uc11c \uc2e4\ud589\ub429\ub2c8\ub2e4. \ub530\ub77c\uc11c \uac1c\ubc1c\uc790\ub294 \ub2e4\uc591\ud55c \uc7a5\uce58\uc5d0\uc11c \uc6d0\ud65c\ud55c \uc0ac\uc6a9\uc790 \uacbd\ud5d8\uc744 \uc81c\uacf5\ud558\uae30 \uc704\ud574 \ubc18\uc751\ud615 \ub514\uc790\uc778\uc744 \uace0\ub824\ud574\uc57c \ud569\ub2c8\ub2e4. \uc544\ud30c\uce58 \ucf54\ub974\ub3c4\ubc14\ub294 HTML, CSS \ubc0f JavaScript\ub97c \uc0ac\uc6a9\ud558\uc5ec \ubaa8\ubc14\uc77c \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uac1c\ubc1c\ud558\ub294 \ub370 \uc720\uc6a9\ud55c \ub3c4\uad6c\uc785\ub2c8\ub2e4. \uc774 \uae00\uc5d0\uc11c\ub294 \uc544\ud30c\uce58 \ucf54\ub974\ub3c4\ubc14\ub97c \uc774\uc6a9\ud55c \ubc18\uc751\ud615 \ub514\uc790\uc778 \uad6c\ud604\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4. 1. \ubc18\uc751\ud615 \ub514\uc790\uc778\uc774\ub780?\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":30466,"url":"https:\/\/atmokpo.com\/w\/30466\/","url_meta":{"origin":25528,"position":5},"title":"\ucf54\ud2c0\ub9b0 \uc548\ub4dc\ub85c\uc774\ub4dc \uc571\uac1c\ubc1c \uac15\uc88c, \uc2a4\ub9c8\ud2b8\ud3f0 \uc815\ubcf4 \uad6c\ud558\uae30","author":"root","date":"2024\ub144 10\uc6d4 28\uc77c","format":false,"excerpt":"\uc2a4\ub9c8\ud2b8\ud3f0\uc5d0\uc11c \uc571\uc744 \uac1c\ubc1c\ud560 \ub54c, \uc0ac\uc6a9\uc790\uc758 \uae30\uae30 \uc815\ubcf4\ub97c \uad6c\ud558\ub294 \uac83\uc740 \ud544\uc218\uc801\uc785\ub2c8\ub2e4. \uc0ac\uc6a9\uc790 \uacbd\ud5d8\uc744 \ud5a5\uc0c1\uc2dc\ud0a4\uace0 \ub9de\ucda4\ud615 \uc11c\ube44\uc2a4\ub97c \uc81c\uacf5\ud558\uae30 \uc704\ud574\uc11c\ub294 \ub514\ubc14\uc774\uc2a4\uc758 \ub2e4\uc591\ud55c \uc815\ubcf4\ub97c \ud65c\uc6a9\ud560 \uc218 \uc788\uc5b4\uc57c \ud569\ub2c8\ub2e4. \ubcf8 \uac15\uc88c\uc5d0\uc11c\ub294 \ucf54\ud2c0\ub9b0\uc744 \ud65c\uc6a9\ud558\uc5ec Android \uae30\uae30\uc758 \uc815\ubcf4\ub97c \ud6a8\uacfc\uc801\uc73c\ub85c \uad6c\ud558\ub294 \ubc29\ubc95\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4. 1. \uc2a4\ub9c8\ud2b8\ud3f0 \uc815\ubcf4\ub780? \uc2a4\ub9c8\ud2b8\ud3f0 \uc815\ubcf4\ub780 \uc0ac\uc6a9\uc790\uc758 \ud558\ub4dc\uc6e8\uc5b4 \ubc0f \uc18c\ud504\ud2b8\uc6e8\uc5b4 \uad6c\uc131 \uc694\uc18c\uc5d0 \ub300\ud55c \uc815\ubcf4\uc785\ub2c8\ub2e4.\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":[]}],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/25528","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=25528"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/25528\/revisions"}],"predecessor-version":[{"id":25529,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/25528\/revisions\/25529"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=25528"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=25528"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=25528"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}