Reputation: 13
I am using the Ctrl+ Shift+P command in VS Code,like I have done many tie previously. When the stagehand is done running, instead of asking for a Project Name, now VSC is asking "Which Dart Template" I tried entering template names such as: package-simple, web-simple but nothing is letting me passed that point and when you click out of that field, the prompt disappears. Any ideas on why this is happening? See screenshots for the exact view.
I've tried updating the stagehand, running package get, package upgrade, closing and restarting VSC
none specifically to show
See screenshots for info.
Upvotes: 1
Views: 2117
Reputation: 42423
This is an unfortunate bug caused by the move from the unforked version of Flutter's web apps (which used a Stagehand template) to the forked version (which uses flutter create
).
To create web apps you can now use the standard Flutter: New Project command after enabling web support (see https://flutter.dev/docs/get-started/web - note that you must be on the master branch).
The Flutter: New Web Project command will be removed in the next update to the VS Code extensions. Sorry for the confusion and inconvenience!
Upvotes: 1