Open Ghoneishy85 opened 7 years ago
I have reverted to version v1.0.0-rc9 as the latest 1.0.3 we experience the same problem. the transitions are not happening and we are seeing no errors / exceptions or other indications that anything is wrong, besides the blank screen.
Trying to use this on Copay/BitPay app.
Same problem, not working at all (Android 7.0).
Installed from bower, added the min.js
library to the index view, tried normally and overriding the default options, enable/disable programmatically and nothing happen. No errors, just the same default transition always (right to go forward, left to get back).
i install the plugin when i go from state to state i can see logs with the native transition flip , slide but nothing happen on the simulator no transition and i add this code below console.log
only "before" log no "error" no "success"
$rootScope.$on('ionicNativeTransitions.beforeTransition', function(){ // Transition is about to happen console.log("before"); }); $rootScope.$on('ionicNativeTransitions.success', function(){ // Transition success console.log("success"); }); $rootScope.$on('ionicNativeTransitions.error', function(){ // Transition error console.log("error"); });