Hi Folks,
Let’s have a quick look at how to setup a Angular 7 project structure with Google Material design.
Go to the command prompt or Powershell
- execute the below command to install angular 7
npm install -g '@angular/cli'
2. after this install following packages
npm install --save @angular/material @angular/cdk @angular/animations
3. Create a new project
ng new <app-name>
4. Change directory to your <app-name> and execute below commands
ng add @angular/cdk
ng add @angular/material
Note: If you face any issues and need to uninstall angular , use below commands
npm uninstall -g @angular/cli
npm cache verify
Done.