-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating

Angular Cookbook
By :

Building user interfaces that are snappy and fast is key to winning users. The apps become much more enjoyable for the end users, and it could bring a lot of value to the owners/creators of the apps. One of the core experiences on the modern web is to show a loader when something is happening in the background. In this recipe, you’ll learn how to create a global user interface loader in your Angular app that shows whenever there is a route transition in the app.
The app that we are going to work with resides in start/apps/chapter07/ng-global-loader
inside the cloned repository:
npm run serve ng-global-loader
This should open the app in a new browser tab and you should see the following:
Figure 7.16: ng-global...