skip to Main Content

I got flutter upgarade and imported a project from git.

and I want to run this app but Dart support is disabled.
Flutter SDK path seems apllied but Dart ( on Setting > Languages & Frameworks > Dart seems not be able to be enabled.

How could I solve this situation?
enter image description here

3

Answers


  1. To solve this problem, you need to set the flag to "Enable Dart support for the following modules"

    Login or Signup to reply.
  2. I had same issue and checking both boxes would do anything, it would always reset back. My fix is:

    • delete the repository
    • clone again with terminal (don’t use Studio) and set different name for poject: git clone (url) newName

    And it works.

    Login or Signup to reply.
  3. Close the project, delete the .idea folder and open it again.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search