Home > OS >  How To Create A New Angular Dart Project On VS Code
How To Create A New Angular Dart Project On VS Code

Time:10-26

I already installed Dart extension for VS Code and also tried ngdart but it isnt working So I pressed CTRL SHIFT P And picked > Dart: New Project

but there is no option for

Angular Dart Web App

only

Bare-Bones Web App

Console Application

Dart Package

Server App

CodePudding user response:

https://pub.dev/packages/ngdart_cli

dart pub global activate ngdart_cli

ngdart create <package_name>

this solved it for me

CodePudding user response:

Since version 7.1.0 angular packages was renamed from angular_(package) to ng(package), so formerly CLI tool ngdart was renamed to ngdart_cli. More info in changelog info on pub.dev https://pub.dev/packages/ngdart/changelog#710.

  • Related