Android studio not showing project files

Viewed 603

Please I have been working on a flutter project on android studio, and at one point I found myself with this situation, the project files on the left is not showing, there is this loading icon

enter image description here

3 Answers

Android Studio started opening my Flutter project as an Android-only project for some reason. Deleting the .idea folder at the Flutter project root removes all the IDE settings. Reopening the project after that fixed it for me.

Change that Android on top Left to Project i think this will fix it

Invalidating cache and restart will solve your problem.

  1. From the main menu, select File | Invalidate Caches.
  2. Click Invalidate and Restart.

enter image description here

Related