Initializing Flutter. This may take a few minutes

Viewed 3858

first post (sorry for noobish post). I've searched Google and all over StackOverFlow to solve the above query on VSCode but to no avail anybody that can help solve this error I'd be really grateful!

It just keeps loading with the following message: Initializing Flutter. This may take a few minutes.

Issue of error

4 Answers

This seems to be a issue with the Flutter installation, please make sure to delete your Flutter folder (the one you downloaded from the GitHub repo) and follow these instructions for your platform, step by step.

It seems like you was upgrading your flutter but due to some reason its not completely upgraded. I think you should try again to upgrade your flutter

Try running flutter in the terminal. If there are any flutter or dart upgrades pending, this will check them and finish those. Then run a flutter doctor, just to make sure everything is running fine.

If you run the the following lines in the CMD:

flutter channel dev

flutter upgrade

and it kept downloading till the message Running pub upgrade... then Close the CMD and for the message "Initializing Flutter. This may take a few minutes" Upgrading will actually take place in the Ide till it finishes that's it :)

Related