I’m utilising Angular route resolves to load data where possible, but if an API request takes more than a second the experience is pretty poor, as the page transition does not occur until the resolved data has been loaded (displaying the previous page until that point).
Is there a generic way to display a loader whilst resolves are running? I’m already using the LoadingController manually in some components (e.g. when a save is occurring).