I am using ionic for building a ios/android application but sometime the page transition not finished.
Anyone have solution for this bug?
i can not see the image…
but maybe you are running in this issue with iOS9 --> use the iOS9 patch to fix transition/routing
Check out this link
Thank for reply but this happen in iOS 8 and 7. I cannot find any info about this bug.
Sorry, I fixed the images. Have any idea about the bug?
like @rajeshwarpatlolla and i mentioned. this is an ios bug.
add this module to your app:
and it should be fixed.
You can gather more info about the bug here (window.location bug):
http://blog.ionic.io/preparing-for-ios-9/
I already using above script for solve ios9 bug. But this happen in ios 8.
When I inspect HTML of ion-view, the nav-view not changed to “actived” or “cached”, the active screen is “entering” and deactive screen is “leaving” like below
<ion-nav-view name="job" class="view-container tab-content disable-user-behavior" nav-view="active" nav-view-transition="ios" nav-view-direction="back" nav-swipe="">
<ion-view hide-back-button="true" cache-view="true" hide-tab="" hide-nav-bar="false" class="pane" nav-view="leaving" style="opacity: 0.9; -webkit-transform: translate3d(-33%, 0px, 0px);">
</ion-view>
<ion-view view-title="新着バイト" hide-back-button="true" cache-view="true" show-tab="" class="pane" nav-view="entering" style="opacity: 1; box-shadow: rgba(0, 0, 0, 0) 0px 0px 10px; -webkit-transform: translate3d(0%, 0px, 0px);">
</ion-view>