How to dismiss loading overlay component

your detail page doesn’t know anything about your loading overlay

you could create a service which shares the loading instance so you can inject the service in your detail page and dismiss it.

or you make something like that:

this.nav.push(DetailPage,{id: id, loading: loading});

and call loading dismiss through navParams.get(‘loading’).dismiss()

4 Likes