{"id":246,"date":"2022-11-19T07:09:11","date_gmt":"2022-11-19T07:09:11","guid":{"rendered":"http:\/\/thekraftors.com\/blog\/?p=246"},"modified":"2024-06-25T13:00:01","modified_gmt":"2024-06-25T13:00:01","slug":"how-to-upgrade-and-downgrade-flutter-version","status":"publish","type":"post","link":"https:\/\/thekraftors.com\/blog\/how-to-upgrade-and-downgrade-flutter-version\/","title":{"rendered":"How to Upgrade Flutter Version?"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-post\" data-elementor-id=\"246\" class=\"elementor elementor-246\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-6056f6f6 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"6056f6f6\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-e37549d\" data-id=\"e37549d\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-3fa22113 elementor-widget elementor-widget-text-editor\" data-id=\"3fa22113\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<p><!-- wp:group {\"style\":{\"color\":{\"background\":\"#e7edf3\"}},\"layout\":{\"type\":\"constrained\"}} --><\/p>\n<div class=\"wp-block-group has-background\" style=\"background-color: #e7edf3;\"><p><!-- wp:paragraph --><\/p>\n<p>To update the Flutter version use the flutter upgrade command:<\/p>\n<p><!-- \/wp:paragraph --><!-- wp:paragraph --><\/p>\n<p>$ flutter upgrade<\/p>\n<p><!-- \/wp:paragraph --><!-- wp:paragraph --><\/p>\n<p>To check&nbsp; Flutter version use the command:<\/p>\n<p><!-- \/wp:paragraph --><!-- wp:paragraph --><\/p>\n<p>$ flutter &#8211;version<\/p>\n<p><!-- \/wp:paragraph --><!-- wp:paragraph --><\/p>\n<p>To Downgrade the Flutter version use the following Steps(from file):<\/p>\n<p><!-- \/wp:paragraph --><!-- wp:paragraph --><\/p>\n<p>1. Download old(Required) Flutter version.<\/p>\n<p><!-- \/wp:paragraph --><!-- wp:paragraph --><\/p>\n<p>2. Extract file and paste in the following location:<\/p>\n<p><!-- \/wp:paragraph --><!-- wp:paragraph --><\/p>\n<p>\/home\/snap\/flutter\/common\/paste required flutter version.<\/p>\n<p><!-- \/wp:paragraph --><!-- wp:paragraph --><\/p>\n<p>3. Run flutter doctor and check flutter version.<\/p>\n<p><!-- \/wp:paragraph --><!-- wp:paragraph --><\/p>\n<p>To Downgrade the Flutter version use the flutter Downgrade command(from terminal):<\/p>\n<p><!-- \/wp:paragraph --><!-- wp:paragraph --><\/p>\n<p>$ flutter downgrade v3.3.7<\/p>\n<p><!-- \/wp:paragraph --><\/p><\/div>\n<p><!-- \/wp:group --><!-- wp:paragraph --><\/p>\n<p>This tutorial shows you how to downgrade or upgrade Flutter SDK version using various methods.<\/p>\n<p><!-- \/wp:paragraph --><!-- wp:paragraph --><\/p>\n<p>If you install Flutter SDK on your computer, you&#8217;ll install the latest stable version by default. For some reason, you may want to use an older version. As an example, if the code cannot be run using the latest stable version. On the contrary, sometimes you may want to try new features of a pre-release version. As a result, you need to change the used Flutter SDK version. Previously, Flutter has&nbsp;<code>downgrade<\/code>&nbsp;command. Unfortunately, it can&#8217;t be used anymore in the newer versions. However, there are some alternatives for changing the SDk version which can be found in this tutorial.<\/p>\n<p><!-- \/wp:paragraph --><!-- wp:paragraph --><\/p>\n<p>Before changing the version, you can check the current version by using the command below.<\/p>\n<p><!-- \/wp:paragraph --><!-- wp:paragraph {\"style\":{\"color\":{\"background\":\"#e7ecf1\"}}} --><\/p>\n<p class=\"has-background\" style=\"background-color: #e7ecf1;\"><strong>flutter \u2013version<\/strong><\/p>\n<p><!-- \/wp:paragraph --><!-- wp:heading --><\/p>\n<h2>Upgrade\/Downgrade by Changing Flutter Repository Branch<\/h2>\n<p><!-- \/wp:heading --><!-- wp:paragraph --><\/p>\n<p>Changing the used Flutter version can be done by changing the git branch to a specific version. First of all, you have to go to the Flutter SDK directory. The location may vary based on the operating system and how you install it. For example, if you installed the SDK using snap on Ubuntu, by default the directory should be&nbsp;<code>\/home\/username\/snap\/flutter\/common\/flutter<\/code>. You can use the command below to check the SDK path.<\/p>\n<p><!-- \/wp:paragraph --><!-- wp:paragraph {\"style\":{\"color\":{\"background\":\"#e8ecf0\"}}} --><\/p>\n<p class=\"has-background\" style=\"background-color: #e8ecf0;\">flutter sdk-path<\/p>\n<p><!-- \/wp:paragraph --><!-- wp:paragraph --><\/p>\n<p>Then, go to the SDK directory using terminal (or you can use git GUI client too). I assume you&#8217;ve installed git on your computer. If you don&#8217;t have git installed, you need to install it first. By default, you should be on the&nbsp;<code>stable<\/code>&nbsp;branch. You can use the&nbsp;<code>git branch<\/code>&nbsp;command to see the list of available branches. Each version has its own branch, so you can just checkout to a specific version using&nbsp;<code>git checkout {branchName}<\/code>&nbsp;command. For example, to change the version to 1.22.0, you can use the command below.<\/p>\n<p><!-- \/wp:paragraph --><!-- wp:paragraph {\"style\":{\"color\":{\"background\":\"#dfe5eb\"}}} --><\/p>\n<p class=\"has-background\" style=\"background-color: #dfe5eb;\">git checkout 1.22.0<\/p>\n<p><!-- \/wp:paragraph --><!-- wp:paragraph --><\/p>\n<p>After that, run any Flutter command such as&nbsp;<code>flutter --version<\/code>&nbsp;or&nbsp;<code>flutter doctor<\/code>&nbsp;which causes Flutter to perform download and compile for the selected version.<\/p>\n<p><!-- \/wp:paragraph --><!-- wp:heading --><\/p>\n<h2>Upgrade\/Downgrade by Changing Flutter Channel<\/h2>\n<p><!-- \/wp:heading --><!-- wp:paragraph --><\/p>\n<p>Flutter has some channels, which can be seen by using&nbsp;flutter channel&nbsp;command. As for now, the available channels are<\/p>\n<p><!-- \/wp:paragraph --><!-- wp:list {\"style\":{\"color\":{\"background\":\"#e5edf3\"}}} --><\/p>\n<ul class=\"has-background\" style=\"background-color: #e5edf3;\"><!-- wp:list-item --><p><\/p>\n<li>master<\/li>\n<p><!-- \/wp:list-item --><!-- wp:list-item --><\/p>\n<li>dev<\/li>\n<p><!-- \/wp:list-item --><!-- wp:list-item --><\/p>\n<li>beta<\/li>\n<p><!-- \/wp:list-item --><!-- wp:list-item --><\/p>\n<li>stable<\/li>\n<p><!-- \/wp:list-item --><\/p><\/ul>\n<p><!-- \/wp:list --><!-- wp:paragraph --><\/p>\n<p>Each version can have different versions. For example, the&nbsp;stable&nbsp;channel uses the latest stable version, while the&nbsp;beta&nbsp;channel uses a pre-release version. To change the channel, you can use&nbsp;flutter channel {channelName}&nbsp;command. Below is the example for changing the channel to&nbsp;beta.<\/p>\n<p><!-- \/wp:paragraph --><!-- wp:paragraph --><\/p>\n<p>&nbsp;&nbsp;flutter channel beta<\/p>\n<p><!-- \/wp:paragraph --><!-- wp:paragraph --><\/p>\n<p>Just like the previous method, you need to run any Flutter command so that it can download and compile libraries and codes for the version used by the selected channel.<\/p>\n<p><!-- \/wp:paragraph --><!-- wp:heading --><\/p>\n<h2>Upgrade\/Downgrade by Downloading Specific SDK Version<\/h2>\n<p><!-- \/wp:heading --><!-- wp:paragraph --><\/p>\n<p>Another alternative to upgrade or downgrade the Flutter SDK version is by downloading a specific SDK version from the&nbsp;<a href=\"https:\/\/flutter.dev\/docs\/development\/tools\/sdk\/releases\" target=\"_blank\" rel=\"noreferrer noopener\">website<\/a>. Just download a version you want that matches your operating system and extract it to a folder. If the directory is different than the previously used version, you have to change the SDK path of the PATH variable and the IDE that you use.<\/p>\n<p><!-- \/wp:paragraph --><!-- wp:paragraph {\"backgroundColor\":\"white\"} --><\/p>\n<p class=\"has-white-background-color has-background\">For updating the PATH variable on Linux, macOS, and Chrome OS, add the export statement below on the&nbsp;<code>$HOME\/.bashrc<\/code>&nbsp;(Linux\/Chrome OS) or&nbsp;<code>$HOME\/.zshrc<\/code>&nbsp;(macOs) file. If there&#8217;s already an existing export statement for Flutter, just replace the existing one.<\/p>\n<p><!-- \/wp:paragraph --><!-- wp:paragraph {\"style\":{\"color\":{\"background\":\"#dae2e8\"}}} --><\/p>\n<p class=\"has-background\" style=\"background-color: #dae2e8;\">export PATH=&#8221;$PATH:[PATH_OF_FLUTTER_GIT_DIRECTORY]\/bin&#8221;<\/p>\n<p><!-- \/wp:paragraph --><!-- wp:paragraph --><\/p>\n<p>For Windows, open the&nbsp;<em>Edit environment variables for your account<\/em>&nbsp;GUI window, select&nbsp;<em>User variables<\/em>&nbsp;and edit the&nbsp;<em>Path<\/em>&nbsp;entry by appending the full path to the Flutter SDK bin. The&nbsp;<em>Path<\/em>&nbsp;variable uses&nbsp;<code>;<\/code>&nbsp;as the value separator. If the&nbsp;<em>Path<\/em>&nbsp;entry doesn&#8217;t exist, just create a new entry named&nbsp;<em>Path<\/em>.<\/p>\n<p><!-- \/wp:paragraph --><!-- wp:heading --><\/p>\n<h2>Upgrade Flutter to The Latest Version<\/h2>\n<p><!-- \/wp:heading --><!-- wp:paragraph --><\/p>\n<p>To upgrade the SDK to the latest version, you can run the&nbsp;<code>upgrade<\/code>&nbsp;command and just wait until the process finishes.<\/p>\n<p><!-- \/wp:paragraph --><!-- wp:paragraph --><\/p>\n<p>flutter upgrade<\/p>\n<p><!-- \/wp:paragraph --><!-- wp:paragraph --><\/p>\n<p>The latest version may differ based on the current channel.<\/p>\n<p><!-- \/wp:paragraph --><!-- wp:heading {\"level\":3,\"style\":{\"color\":{\"background\":\"#d9e1e7\"}}} --><\/p>\n<h3 class=\"has-background\" style=\"background-color: #d9e1e7;\">Example:&nbsp;<strong>flutter version v1.2.1<\/strong><\/h3>\n<p><!-- \/wp:heading --><!-- wp:list --><\/p>\n<ul><!-- wp:list-item --><p><\/p>\n<li>This command will use a specific version number. You can have the list of the available version numbers using the flutter version or&nbsp;<strong><a href=\"https:\/\/github.com\/flutter\/flutter\/tags\" target=\"_blank\" rel=\"noreferrer noopener\">click here<\/a><\/strong><\/li>\n<p><!-- \/wp:list-item --><!-- wp:list-item --><\/p>\n<li>After this, run any flutter command such as flutter doctor, and flutter will take care of&nbsp;<strong>downloading<\/strong>\/<strong>compiling<\/strong>&nbsp;everything required to run this version.<\/li>\n<p><!-- \/wp:list-item --><!-- wp:list-item --><\/p>\n<li>So now, Run the following command to see a list of available versions.<\/li>\n<p><!-- \/wp:list-item --><\/p><\/ul>\n<p><!-- \/wp:list --><!-- wp:paragraph --><\/p>\n<p>flutter version<\/p>\n<p><!-- \/wp:paragraph --><!-- wp:heading --><\/p>\n<h2>Then choose a version you want to switch to by running<\/h2>\n<p><!-- \/wp:heading --><!-- wp:group {\"style\":{\"color\":{\"background\":\"#dee4e9\"}},\"layout\":{\"type\":\"constrained\"}} --><\/p>\n<div class=\"wp-block-group has-background\" style=\"background-color: #dee4e9;\"><p><!-- wp:paragraph --><\/p>\n<p>flutter version v1.2.1<\/p>\n<p><!-- \/wp:paragraph --><!-- wp:paragraph --><\/p>\n<p>To undo and revert back to the stable.<\/p>\n<p><!-- \/wp:paragraph --><!-- wp:paragraph --><\/p>\n<p>flutter channel stable<\/p>\n<p><!-- \/wp:paragraph --><!-- wp:paragraph --><\/p>\n<p>flutter upgrade<\/p>\n<p><!-- \/wp:paragraph --><!-- wp:paragraph --><\/p>\n<p>In the Flutter install directory execute:<\/p>\n<p><!-- \/wp:paragraph --><!-- wp:paragraph --><\/p>\n<p>git checkout v0.1.9<\/p>\n<p><!-- \/wp:paragraph --><!-- wp:paragraph --><\/p>\n<p>then run<\/p>\n<p><!-- \/wp:paragraph --><!-- wp:paragraph --><\/p>\n<p>flutter doctor<\/p>\n<p><!-- \/wp:paragraph --><\/p><\/div>\n<p><!-- \/wp:group --><!-- wp:heading --><\/p>\n<h2>Conclusion:<\/h2>\n<p><!-- \/wp:heading --><!-- wp:paragraph --><\/p>\n<p>Hope you guys are enjoying our guides on Flutter Development.<\/p>\n<p><!-- \/wp:paragraph --><!-- wp:paragraph --><\/p>\n<p>So in this guide, we learned How to&nbsp;<strong>downgrade Flutter SDK.<\/strong><\/p>\n<p><!-- \/wp:paragraph --><!-- wp:paragraph --><\/p>\n<p>Drop us your valuable suggestion\/feedback to serve you better.<\/p>\n<p><!-- \/wp:paragraph --><!-- wp:paragraph --><\/p>\n<p><a href=\"https:\/\/flutteragency.com\/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Flutter Agency<\/strong><\/a>&nbsp;is our portal Platform dedicated to Flutter Technology and&nbsp;<strong>Flutter Developers<\/strong>. The portal is full of cool resources from Flutter like&nbsp;<strong>Flutter Widget&nbsp;Guide<\/strong>,&nbsp;<strong>Flutter Projects<\/strong>,&nbsp;<strong>Code libs<\/strong>&nbsp;and etc.<\/p>\n<p><!-- \/wp:paragraph --><!-- wp:paragraph --><\/p>\n<p><a href=\"https:\/\/flutteragency.com\/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Flutter Agency<\/strong><\/a>&nbsp;is one of the most popular online portals dedicated to&nbsp;<strong>Flutter Technology<\/strong>&nbsp;and daily thousands of unique visitors come to this portal to enhance their knowledge of&nbsp;<strong>Flutter<\/strong>.&nbsp; &nbsp;<\/p>\n<p><\/p>\n<h6>Also, Explore<\/h6>\n<p><\/p>\n<h4 class=\"entry-title\">Cubit in Flutter<\/h4>\n<p><\/p>\n<p>Cubit is a state management. It is a subset of the bloc package that does not given credit to events and instead uses methods to emit new states. It\u2019s a class that stores an observable state, the observation is powered by Streams but in such a friendly way that it is not necessary to know reactive programming.<\/p>\n<p><span style=\"font-weight: 400;\">Read the full article here: <a class=\"components-external-link editor-post-url__link\" href=\"https:\/\/thekraftors.com\/blog\/cubit-in-flutter\/\" target=\"_blank\" rel=\"external noreferrer noopener\"><span class=\"editor-post-url__link-prefix\">https:\/\/thekraftors.com\/blog\/<\/span><span class=\"editor-post-url__link-slug\">cubit-in-flutter<\/span><span class=\"editor-post-url__link-suffix\">\/<\/span><span class=\"components-visually-hidden efbaa-c---eebb-0 e19lxcc00\" data-wp-c16t=\"true\" data-wp-component=\"VisuallyHidden\">(opens in a new tab)<\/span><\/a><\/span><\/p>\n<p><img decoding=\"async\" class=\"wp-image-247\" src=\"http:\/\/thekraftors.com\/blog\/wp-content\/uploads\/2022\/11\/image-7-1024x21.png\" alt=\"\" width=\"843\" height=\"17\" srcset=\"https:\/\/thekraftors.com\/blog\/wp-content\/uploads\/2022\/11\/image-7-1024x21.png 1024w, https:\/\/thekraftors.com\/blog\/wp-content\/uploads\/2022\/11\/image-7-300x6.png 300w, https:\/\/thekraftors.com\/blog\/wp-content\/uploads\/2022\/11\/image-7-768x16.png 768w, https:\/\/thekraftors.com\/blog\/wp-content\/uploads\/2022\/11\/image-7.png 1118w\" sizes=\"(max-width: 843px) 100vw, 843px\" \/><\/p>\n<p><!-- \/wp:image --><\/p>\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>To update the Flutter version use the flutter upgrade command: $ flutter upgrade To check&nbsp; Flutter version use the command: $ flutter &#8211;version To Downgrade the Flutter version use the&hellip;<\/p>\n","protected":false},"author":6,"featured_media":472,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[12],"tags":[],"class_list":["post-246","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-flutter"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Upgrade Flutter Version? - The Kraftors<\/title>\n<meta name=\"description\" content=\"Flutter is userd for building hybrid mobile application. Check out the article to know how to Upgrade Flutter Version\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/thekraftors.com\/blog\/how-to-upgrade-and-downgrade-flutter-version\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Upgrade Flutter Version? - The Kraftors\" \/>\n<meta property=\"og:description\" content=\"Flutter is userd for building hybrid mobile application. Check out the article to know how to Upgrade Flutter Version\" \/>\n<meta property=\"og:url\" content=\"https:\/\/thekraftors.com\/blog\/how-to-upgrade-and-downgrade-flutter-version\/\" \/>\n<meta property=\"og:site_name\" content=\"The Kraftors\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/thekraftors\/\" \/>\n<meta property=\"article:published_time\" content=\"2022-11-19T07:09:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-06-25T13:00:01+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/thekraftors.com\/blog\/wp-content\/uploads\/2022\/11\/Yellow-White-Bold-Best-AI-Websites-YouTube-Thumbnail-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"720\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Aishwarya Rawani\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@the_kraftors\" \/>\n<meta name=\"twitter:site\" content=\"@the_kraftors\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Aishwarya Rawani\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/thekraftors.com\/blog\/how-to-upgrade-and-downgrade-flutter-version\/\",\"url\":\"https:\/\/thekraftors.com\/blog\/how-to-upgrade-and-downgrade-flutter-version\/\",\"name\":\"How to Upgrade Flutter Version? - The Kraftors\",\"isPartOf\":{\"@id\":\"https:\/\/thekraftors.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/thekraftors.com\/blog\/how-to-upgrade-and-downgrade-flutter-version\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/thekraftors.com\/blog\/how-to-upgrade-and-downgrade-flutter-version\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/thekraftors.com\/blog\/wp-content\/uploads\/2022\/11\/Yellow-White-Bold-Best-AI-Websites-YouTube-Thumbnail-1.png\",\"datePublished\":\"2022-11-19T07:09:11+00:00\",\"dateModified\":\"2024-06-25T13:00:01+00:00\",\"author\":{\"@id\":\"https:\/\/thekraftors.com\/blog\/#\/schema\/person\/a39df6d7b32ca60b09a2bee37695a921\"},\"description\":\"Flutter is userd for building hybrid mobile application. Check out the article to know how to Upgrade Flutter Version\",\"breadcrumb\":{\"@id\":\"https:\/\/thekraftors.com\/blog\/how-to-upgrade-and-downgrade-flutter-version\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/thekraftors.com\/blog\/how-to-upgrade-and-downgrade-flutter-version\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/thekraftors.com\/blog\/how-to-upgrade-and-downgrade-flutter-version\/#primaryimage\",\"url\":\"https:\/\/thekraftors.com\/blog\/wp-content\/uploads\/2022\/11\/Yellow-White-Bold-Best-AI-Websites-YouTube-Thumbnail-1.png\",\"contentUrl\":\"https:\/\/thekraftors.com\/blog\/wp-content\/uploads\/2022\/11\/Yellow-White-Bold-Best-AI-Websites-YouTube-Thumbnail-1.png\",\"width\":1280,\"height\":720,\"caption\":\"Flutter Upgrade\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/thekraftors.com\/blog\/how-to-upgrade-and-downgrade-flutter-version\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/thekraftors.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Upgrade Flutter Version?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/thekraftors.com\/blog\/#website\",\"url\":\"https:\/\/thekraftors.com\/blog\/\",\"name\":\"The Kraftors\",\"description\":\"AI | AR | eCommerce | Devops | Magento | Flutter\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/thekraftors.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/thekraftors.com\/blog\/#\/schema\/person\/a39df6d7b32ca60b09a2bee37695a921\",\"name\":\"Aishwarya Rawani\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/thekraftors.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b8aff565eaa1e1ed452ea8f291542bfcb671ee92ad38709158cce1152bd2f00c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/b8aff565eaa1e1ed452ea8f291542bfcb671ee92ad38709158cce1152bd2f00c?s=96&d=mm&r=g\",\"caption\":\"Aishwarya Rawani\"},\"url\":\"https:\/\/thekraftors.com\/blog\/author\/aishwarya-rawani\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Upgrade Flutter Version? - The Kraftors","description":"Flutter is userd for building hybrid mobile application. Check out the article to know how to Upgrade Flutter Version","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:\/\/thekraftors.com\/blog\/how-to-upgrade-and-downgrade-flutter-version\/","og_locale":"en_US","og_type":"article","og_title":"How to Upgrade Flutter Version? - The Kraftors","og_description":"Flutter is userd for building hybrid mobile application. Check out the article to know how to Upgrade Flutter Version","og_url":"https:\/\/thekraftors.com\/blog\/how-to-upgrade-and-downgrade-flutter-version\/","og_site_name":"The Kraftors","article_publisher":"https:\/\/www.facebook.com\/thekraftors\/","article_published_time":"2022-11-19T07:09:11+00:00","article_modified_time":"2024-06-25T13:00:01+00:00","og_image":[{"width":1280,"height":720,"url":"https:\/\/thekraftors.com\/blog\/wp-content\/uploads\/2022\/11\/Yellow-White-Bold-Best-AI-Websites-YouTube-Thumbnail-1.png","type":"image\/png"}],"author":"Aishwarya Rawani","twitter_card":"summary_large_image","twitter_creator":"@the_kraftors","twitter_site":"@the_kraftors","twitter_misc":{"Written by":"Aishwarya Rawani","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/thekraftors.com\/blog\/how-to-upgrade-and-downgrade-flutter-version\/","url":"https:\/\/thekraftors.com\/blog\/how-to-upgrade-and-downgrade-flutter-version\/","name":"How to Upgrade Flutter Version? - The Kraftors","isPartOf":{"@id":"https:\/\/thekraftors.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/thekraftors.com\/blog\/how-to-upgrade-and-downgrade-flutter-version\/#primaryimage"},"image":{"@id":"https:\/\/thekraftors.com\/blog\/how-to-upgrade-and-downgrade-flutter-version\/#primaryimage"},"thumbnailUrl":"https:\/\/thekraftors.com\/blog\/wp-content\/uploads\/2022\/11\/Yellow-White-Bold-Best-AI-Websites-YouTube-Thumbnail-1.png","datePublished":"2022-11-19T07:09:11+00:00","dateModified":"2024-06-25T13:00:01+00:00","author":{"@id":"https:\/\/thekraftors.com\/blog\/#\/schema\/person\/a39df6d7b32ca60b09a2bee37695a921"},"description":"Flutter is userd for building hybrid mobile application. Check out the article to know how to Upgrade Flutter Version","breadcrumb":{"@id":"https:\/\/thekraftors.com\/blog\/how-to-upgrade-and-downgrade-flutter-version\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/thekraftors.com\/blog\/how-to-upgrade-and-downgrade-flutter-version\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/thekraftors.com\/blog\/how-to-upgrade-and-downgrade-flutter-version\/#primaryimage","url":"https:\/\/thekraftors.com\/blog\/wp-content\/uploads\/2022\/11\/Yellow-White-Bold-Best-AI-Websites-YouTube-Thumbnail-1.png","contentUrl":"https:\/\/thekraftors.com\/blog\/wp-content\/uploads\/2022\/11\/Yellow-White-Bold-Best-AI-Websites-YouTube-Thumbnail-1.png","width":1280,"height":720,"caption":"Flutter Upgrade"},{"@type":"BreadcrumbList","@id":"https:\/\/thekraftors.com\/blog\/how-to-upgrade-and-downgrade-flutter-version\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/thekraftors.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Upgrade Flutter Version?"}]},{"@type":"WebSite","@id":"https:\/\/thekraftors.com\/blog\/#website","url":"https:\/\/thekraftors.com\/blog\/","name":"The Kraftors","description":"AI | AR | eCommerce | Devops | Magento | Flutter","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/thekraftors.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/thekraftors.com\/blog\/#\/schema\/person\/a39df6d7b32ca60b09a2bee37695a921","name":"Aishwarya Rawani","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/thekraftors.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/b8aff565eaa1e1ed452ea8f291542bfcb671ee92ad38709158cce1152bd2f00c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b8aff565eaa1e1ed452ea8f291542bfcb671ee92ad38709158cce1152bd2f00c?s=96&d=mm&r=g","caption":"Aishwarya Rawani"},"url":"https:\/\/thekraftors.com\/blog\/author\/aishwarya-rawani\/"}]}},"_links":{"self":[{"href":"https:\/\/thekraftors.com\/blog\/wp-json\/wp\/v2\/posts\/246","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/thekraftors.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/thekraftors.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/thekraftors.com\/blog\/wp-json\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/thekraftors.com\/blog\/wp-json\/wp\/v2\/comments?post=246"}],"version-history":[{"count":16,"href":"https:\/\/thekraftors.com\/blog\/wp-json\/wp\/v2\/posts\/246\/revisions"}],"predecessor-version":[{"id":491,"href":"https:\/\/thekraftors.com\/blog\/wp-json\/wp\/v2\/posts\/246\/revisions\/491"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/thekraftors.com\/blog\/wp-json\/wp\/v2\/media\/472"}],"wp:attachment":[{"href":"https:\/\/thekraftors.com\/blog\/wp-json\/wp\/v2\/media?parent=246"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/thekraftors.com\/blog\/wp-json\/wp\/v2\/categories?post=246"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/thekraftors.com\/blog\/wp-json\/wp\/v2\/tags?post=246"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}