Continuing the discussion from Please help test: Angular 1.3, improved transitions, cached views, etc:
There’s is a way to cache the next view? Not just the previous view. For example, when the user open my app, I show a list of popular posts, when the user try to interact with something we ask for login, this login is another view and would be nice if it was already cached and the transition was fast as the transition of backviews (that feels faster)
http://ionicframework.com/docs/nightly/api/service/$ionicHistory/
something like:
.controller('homeCtrl', function($ionicHistory) {
$ionicHistory.cacheNextView({
stateName: 'app.login' // name defined in stateProvider
});
});