{"id":32559,"date":"2024-11-01T09:09:58","date_gmt":"2024-11-01T09:09:58","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=32559"},"modified":"2024-11-01T11:54:49","modified_gmt":"2024-11-01T11:54:49","slug":"flutter-course-installing-visual-studio-code-2-6","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/32559\/","title":{"rendered":"Flutter Course: Installing Visual Studio Code 2.6"},"content":{"rendered":"<p>Flutter is an open-source UI framework developed by Google that allows you to easily create high-performance applications for mobile apps, web apps, and desktop applications. Today, we will learn how to set up the Flutter development environment using Visual Studio Code. This tutorial provides a step-by-step explanation for those who are new to Flutter.<\/p>\n<h2>Essential Preparations<\/h2>\n<ul>\n<li>Windows, macOS, or Linux operating system<\/li>\n<li>Internet connection<\/li>\n<li>Visual Studio Code (VSCode)<\/li>\n<li>Flutter SDK<\/li>\n<li>Various plugins<\/li>\n<\/ul>\n<h2>1. Download and Install Visual Studio Code<\/h2>\n<p>First, you need to download Visual Studio Code. Visual Studio Code is free and supports various operating systems.<\/p>\n<p><strong>Step 1:<\/strong> Click the link below to visit the official Visual Studio Code website.<\/p>\n<p><a href=\"https:\/\/code.visualstudio.com\/\" target=\"_blank\" rel=\"noopener\">Download Visual Studio Code<\/a><\/p>\n<p><strong>Step 2:<\/strong> Download the installation file suitable for your operating system. Choose one of Windows, macOS, or Linux and proceed to download.<\/p>\n<p><strong>Step 3:<\/strong> Run the downloaded installation file and follow the instructions of the installation wizard to complete the installation. It is recommended to select the &#8220;Add to PATH&#8221; option during installation.<\/p>\n<h2>2. Download and Install Flutter SDK<\/h2>\n<p>Once Visual Studio Code is installed, you need to install the Flutter SDK.<\/p>\n<p><strong>Step 1:<\/strong> Click the link below to visit the official Flutter SDK website.<\/p>\n<p><a href=\"https:\/\/flutter.dev\/docs\/get-started\/install\" target=\"_blank\" rel=\"noopener\">Download Flutter SDK<\/a><\/p>\n<p><strong>Step 2:<\/strong> Download the zip file suitable for your operating system and unzip it to your desired location.<\/p>\n<p><strong>Step 3:<\/strong> You need to add the Flutter SDK&#8217;s path to the system environment variables.<\/p>\n<ul>\n<li>Windows: Add the path to the Flutter&#8217;s bin folder in the &#8216;Path&#8217; variable in system environment variables.<\/li>\n<li>macOS\/Linux: Run <code>export PATH=\"$PATH:\/path\/to\/flutter\/bin\"<\/code> in the terminal or add it to your <code>~\/.bash_profile<\/code> or <code>~\/.bashrc<\/code> file.<\/li>\n<\/ul>\n<p>Once the installation is complete, open the terminal and run the <code>flutter doctor<\/code> command to check the installed Flutter environment.<\/p>\n<h2>3. Install Flutter and Dart Plugins in Visual Studio Code<\/h2>\n<p>To develop with Flutter, you need to install plugins related to the Dart language.<\/p>\n<p><strong>Step 1:<\/strong> Open Visual Studio Code and click the &#8216;Extensions&#8217; icon in the left sidebar.<\/p>\n<p><strong>Step 2:<\/strong> Type &#8216;Flutter&#8217; in the search box and find the plugin called &#8216;Flutter &#8211; Dart Team.&#8217; Click the <code>Install<\/code> button to install it.<\/p>\n<p><strong>Step 3:<\/strong> It is also recommended to install the plugin named &#8216;Dart.&#8217; This plugin adds support for the Dart language.<\/p>\n<h2>4. Create a New Flutter Project<\/h2>\n<p>To create a Flutter project, use the Command Palette in VSCode.<\/p>\n<p><strong>Step 1:<\/strong> Press (Windows: <code>Ctrl + Shift + P<\/code>, macOS: <code>Cmd + Shift + P<\/code>) to open the Command Palette.<\/p>\n<p><strong>Step 2:<\/strong> Type &#8216;Flutter: New Project&#8217; and select it.<\/p>\n<p><strong>Step 3:<\/strong> Enter the name of the project and select where to save it.<\/p>\n<p><strong>Step 4:<\/strong> Once the project is created, VSCode will automatically navigate to that project.<\/p>\n<h2>5. Run the Project<\/h2>\n<p>Now, let&#8217;s run the project to check if the Flutter application has been created successfully.<\/p>\n<p><strong>Step 1:<\/strong> Open the terminal and type the <code>flutter run<\/code> command. You can run the application in a web browser or on an emulator.<\/p>\n<p><strong>Step 2:<\/strong> You can also connect a physical device or use an emulator in Android Studio. Select a device from the bottom bar of VSCode and type <code>flutter run<\/code> again.<\/p>\n<h2>6. Configure the Flutter App<\/h2>\n<p>Let&#8217;s learn how to configure a Flutter app. The &#8216;lib\/main.dart&#8217; file generated by default is the entry point of the application. You can write code in this file to add UI and functionality.<\/p>\n<p>Below is the structure of a simple Flutter application:<\/p>\n<pre><code>import 'package:flutter\/material.dart';\n\nvoid main() {\n  runApp(MyApp());\n}\n\nclass MyApp extends StatelessWidget {\n  @override\n  Widget build(BuildContext context) {\n    return MaterialApp(\n      title: 'Hello Flutter',\n      home: Scaffold(\n        appBar: AppBar(\n          title: Text('Welcome to Flutter!'),\n        ),\n        body: Center(\n          child: Text('Hello, world!'),\n        ),\n      ),\n    );\n  }\n}\n<\/code><\/pre>\n<p>In the above example, <code>MaterialApp<\/code> is used to create an app based on Flutter&#8217;s Material Design. This app has a UI that displays a simple text.<\/p>\n<h2>7. Concluding the Flutter Tutorial<\/h2>\n<p>In this tutorial, we learned how to set up the Flutter development environment using Visual Studio Code. We covered how to create a basic Flutter project and run it with a simple code example. Based on this tutorial, you will be able to lay the foundation for creating more complex Flutter applications.<\/p>\n<p>For more information and resources, refer to the official Flutter documentation (<a href=\"https:\/\/flutter.dev\/docs\" target=\"_blank\" rel=\"noopener\">https:\/\/flutter.dev\/docs<\/a>). In future Flutter courses, we will cover more topics, so stay tuned!<\/p>\n<h2>Questions and Feedback<\/h2>\n<p>If you have any questions or feedback about this tutorial, please leave a comment below. Let&#8217;s learn and grow together with Flutter!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Flutter is an open-source UI framework developed by Google that allows you to easily create high-performance applications for mobile apps, web apps, and desktop applications. Today, we will learn how to set up the Flutter development environment using Visual Studio Code. This tutorial provides a step-by-step explanation for those who are new to Flutter. Essential &hellip; <a href=\"https:\/\/atmokpo.com\/w\/32559\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Flutter Course: Installing Visual Studio Code 2.6&#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":[151],"tags":[],"class_list":["post-32559","post","type-post","status-publish","format-standard","hentry","category-flutter-course"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Flutter Course: Installing Visual Studio Code 2.6 - \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\/32559\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Flutter Course: Installing Visual Studio Code 2.6 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Flutter is an open-source UI framework developed by Google that allows you to easily create high-performance applications for mobile apps, web apps, and desktop applications. Today, we will learn how to set up the Flutter development environment using Visual Studio Code. This tutorial provides a step-by-step explanation for those who are new to Flutter. Essential &hellip; \ub354 \ubcf4\uae30 &quot;Flutter Course: Installing Visual Studio Code 2.6&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/32559\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:09:58+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:54:49+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=\"4\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/32559\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/32559\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Flutter Course: Installing Visual Studio Code 2.6\",\"datePublished\":\"2024-11-01T09:09:58+00:00\",\"dateModified\":\"2024-11-01T11:54:49+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/32559\/\"},\"wordCount\":672,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Flutter course\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/32559\/\",\"url\":\"https:\/\/atmokpo.com\/w\/32559\/\",\"name\":\"Flutter Course: Installing Visual Studio Code 2.6 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:09:58+00:00\",\"dateModified\":\"2024-11-01T11:54:49+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/32559\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/32559\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/32559\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Flutter Course: Installing Visual Studio Code 2.6\"}]},{\"@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":"Flutter Course: Installing Visual Studio Code 2.6 - \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\/32559\/","og_locale":"ko_KR","og_type":"article","og_title":"Flutter Course: Installing Visual Studio Code 2.6 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Flutter is an open-source UI framework developed by Google that allows you to easily create high-performance applications for mobile apps, web apps, and desktop applications. Today, we will learn how to set up the Flutter development environment using Visual Studio Code. This tutorial provides a step-by-step explanation for those who are new to Flutter. Essential &hellip; \ub354 \ubcf4\uae30 \"Flutter Course: Installing Visual Studio Code 2.6\"","og_url":"https:\/\/atmokpo.com\/w\/32559\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:09:58+00:00","article_modified_time":"2024-11-01T11:54:49+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":"4\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/32559\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/32559\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Flutter Course: Installing Visual Studio Code 2.6","datePublished":"2024-11-01T09:09:58+00:00","dateModified":"2024-11-01T11:54:49+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/32559\/"},"wordCount":672,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Flutter course"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/32559\/","url":"https:\/\/atmokpo.com\/w\/32559\/","name":"Flutter Course: Installing Visual Studio Code 2.6 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:09:58+00:00","dateModified":"2024-11-01T11:54:49+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/32559\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/32559\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/32559\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Flutter Course: Installing Visual Studio Code 2.6"}]},{"@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":[],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/32559","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=32559"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/32559\/revisions"}],"predecessor-version":[{"id":32560,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/32559\/revisions\/32560"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=32559"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=32559"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=32559"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}