Home > Mobile >  project flutter does not start on vscode but start on android studio
project flutter does not start on vscode but start on android studio

Time:09-27

So I'm currently working on a flutter app in vs code. it does not show any error in the code .and the vs code detects the emulator .but when I start debugging it does not display anything on the emulator .but when I use android studio it starts normally.

CodePudding user response:

Have you followed set up an editor steps?
If it doesn't work try to run the app by vs code terminal by typing flutter run (Flutter CLI) or flutter run --verbose for verbose mode.
If this also doesn't work please provide flutter doctor -v results.

CodePudding user response:

I think the problem was in the emulator system because when I create a new emulator with Android 11 it works fine for me.

  • Related