@willb this is a good idea!
What if I want to use a service and then push the page? Something like:
@Page {
providers: [ItemsService]
}
...
goToNextPage(site) {
// Get all items
this.itemsService.retrieveData();
this.nav.push(NewPage);
}
How would you deal with it?