Home > database >  Why are the IntelliJ IDEA Flutter tool windows missing in my Melos project?
Why are the IntelliJ IDEA Flutter tool windows missing in my Melos project?

Time:10-23

I have a Melos project containing both Flutter and non-Flutter Dart packages.

When running my Flutter app, it's apparent that the Flutter tool windows (such as Flutter Inspector, Flutter Performance, and Flutter Outline) are missing from both the IntelliJ IDEA window frame and the View > Tool Windows menu item.

What's going on?

CodePudding user response:

This can happen if you create the first Flutter package and run melos bootstrap while the project is already open in IntelliJ IDEA.

To enable the tool windows, re-open the project after bootstrapping with Flutter packages.

  • Related