July 2019
Intermediate to advanced
416 pages
10h 6m
English
Just like we did in the previous chapter, we are going to create an Angular client that uses Angular Material as its UI. Again, we are going to use the ng new command to create a new application, and we will set the prefix to atp. Since we want to add support for routing to our application, we are going to add an extra --routing parameter to our command line. We are doing this because it adds the necessary AppRoutingModule entries to app.module.ts and creates the app-routing.module.ts routing file for us:
ng new Chapter05 --style scss --prefix atp --routing true
In the previous chapter, even though we used Material, we didn't take advantage of routing with it. We are going to use Material one last time before we ...
Read now
Unlock full access