July 2019
Intermediate to advanced
416 pages
10h 6m
English
After all our hard work writing the server-side code and letting the user choose what image they want to upload, we need something to actually show the images. We are going to create a PageBody component, which we will display and add as an element inside our main navigation. Again, we're going to let Angular do the hard work and create the infrastructure for us:
ng g c components/PageBody
With this component created, we're going to update app.component.html with the PageBody component as follows:
... <span>Advanced TypeScript</span> </mat-toolbar> <atp-page-body></atp-page-body> </mat-sidenav-content></mat-sidenav-container>
When we installed Material support, one of the features we added was Flex Layout, which provides ...
Read now
Unlock full access