Learn how to downgrade your flutter version to a lower version, in this article we will reduce the flutter version to use version 2.0.5 or less on Mac or Linux.
Furthermore, your might have probably wandered around the internet trying to figure how to downgrade your flutter SDK version.
Reason to Downgrade/ Possible Causes;
Maybe you are onboarding unto a new codebase and you installed flutter’s latest version unknowingly that the team uses version 2.0.5 or less.
Maybe you updated your flutter version because you where notified, then your app could not run anymore due to an error related to the new upgrade.
4 Steps to Downgrade
1. Type which flutter
This will display the flutter repository path on your local system.
2. Switch to it, type cd /Users/your-username/Documents/flutter/bin
3. Type git checkout 2.0.5
This will switch to the previous flutter version called 2.0.5 as the branch name
4. Type flutter version
This will identify the active flutter version we just set and attempt to download it.
Finally type flutter doctor
We are good.
Learn How to build a quiz app using flutter
Related posts
0 Comments
Leave a Reply Cancel reply
This site uses Akismet to reduce spam. Learn how your comment data is processed.
Subscribe for newsletter
* You will receive the latest news and updates on your favorite topics!
How to Downgrade Flutter Version – FIXED
Learn how to downgrade your flutter version to a lower version, in this article we will reduce the flutter version…
Generate Resources for Android Playstore & iOS Apple Store Flutter
In this post, we’ll generate resources for the flutter app we created in the previous post. we’ll be learning how…
Build a Quiz App using Flutter for Android and iOS
In this post we’ll be working with Flutter, a fast-rising Developer tool built by Google to develop an Android App,…
Setup Flutter on Kali, Ubuntu, and any other Linux Distro
In this post, we’ll be learning how to set up your Flutter on Linux for development. Flutter is a fast-rising…
FIXED xcodebuild: Failed to load code for plug-in – Repeatedly Being Asked to Install Command Line Tools
Hey there, updating your MacOS Montery Xcode can be a pin in the a$$ especially when you got Xcode working…
How to Downgrade Flutter Version – FIXED
Learn how to downgrade your flutter version to a lower version, in this article we will reduce the flutter version…
Build a Quiz App using Flutter for Android and iOS
In this post we’ll be working with Flutter, a fast-rising Developer tool built by Google to develop an Android App,…
Setup Flutter on Kali, Ubuntu, and any other Linux Distro
In this post, we’ll be learning how to set up your Flutter on Linux for development. Flutter is a fast-rising…
Very nice way to explain..Thanks for the article.