In my app I use the fade animation when logging in:
$ionicNativeTransitions.stateGo('dashboard',{},{},{
type:"fade",
androiddelay: -1
});
On the first transition it works fine but when logging out and trying to login the second time the app freezes. The snapshot is taken and the view changes but the animation isn't fired and the app seems frozen.
Tried to add "iosdelay: -1" and calling window.plugins.nativepagetransitions.executePendingTransition()
But it won't work.
The issue occurred also in Android but calling window.plugins.nativepagetransitions.executePendingTransition() fixed it.
Hi,
In my app I use the fade animation when logging in: $ionicNativeTransitions.stateGo('dashboard',{},{},{ type:"fade", androiddelay: -1 });
On the first transition it works fine but when logging out and trying to login the second time the app freezes. The snapshot is taken and the view changes but the animation isn't fired and the app seems frozen.
Tried to add "iosdelay: -1" and calling window.plugins.nativepagetransitions.executePendingTransition() But it won't work.
The issue occurred also in Android but calling window.plugins.nativepagetransitions.executePendingTransition() fixed it.
I'll appreciate any help on this, Thanks!