flutter-intellij
flutter-intellij copied to clipboard
Flutter Plugin for IntelliJ
## What happened (please describe what you were doing when this exception occurred) ## Version information IntelliJ IDEA `2021.3.3` • Flutter plugin `io.flutter 66.0.3` • Dart plugin `213.7306` Flutter 2.10.1...
## Steps to Reproduce 1. Code is `Colors.blue.shade` 2. Open the code completion #### Expected: To see all shades, along their _colors_, similar to  #### Actual: The colors of...
## What happened (please describe what you were doing when this exception occurred) I wrote this command below :) const int printableCharsStartIndex = 32; const int charLength = 1114111 -...
Some classes like `FlutterWidgetPerf` implement the Disposable interface but have `dispose()` called manually which is counter to how `dispose()` should be called for a properly functioning IntelliJ plugin. Mixing manual...
## What happened I opened a Flutter project. ## Version information IntelliJ IDEA `2021.1.2` • Flutter plugin `io.flutter 57.0.6-dev.5` • Dart plugin `211.7233` No Flutter sdk configured. ## Exception null...
Thanks for the feedback! If your issue is related to the Flutter framework itself, please open an issue at [github.com/flutter/flutter](https://github.com/flutter/flutter/issues/new). ## Steps to Reproduce Run Flutter App in MacOs desktop....
Debugging complex widget tests often involves a lot of debugDumpApp() to look at the current state of the UI but terminal tree dumps are unwieldy. Especially trying to connect widgets...
https://plugins.jetbrains.com/docs/intellij/disposers.html#the-disposer-singleton "Even though Application and Project implement Disposable, they must NEVER be used as parent disposables in plugin code. Disposables registered using those objects as parents will not be disposed...
If I have a widget like the following, ```dart class MyWidget extends StatelessWidget { final arg1, arg2, arg3; // I know this is cringy, it's just for the sake of...
When creating new widget and typing the new keyword before it for e.x. new Conta and clicking tab I do get the full completion for that widget (new Container()). When...