ng-walkthrough icon indicating copy to clipboard operation
ng-walkthrough copied to clipboard

Scroll on IOS ionic

Open kashif-imagyn opened this issue 5 years ago • 2 comments

I am facing an issue with ionic 3 in ios. Walkthrough is blocking ui interaction in ios but not blocking scroll user can scroll down and up even if walkthrough is active .please advise Thanks

kashif-imagyn avatar Mar 04 '19 05:03 kashif-imagyn

We faced this issue on iOS. If you've got the css attribute -webkit-overflow-scrolling: touch on your container element (body, div, ...), you have to set this attribute to initial for the walkthrough. And set it again to touch after the walkthrough.

BatStak avatar Mar 05 '19 09:03 BatStak

Thanks for replying i manage to solve the problem disabling scroll on container when walk-through is enable and enable the scroll when walk-through is finish.

On Tue, Mar 5, 2019 at 2:09 PM Baptiste [email protected] wrote:

We faced this issue on iOS. If you've got the css attribute -webkit-overflow-scrolling: touch on your container element (body, div, ...), you have to set this attribute to initial for the walkthrough. And set it again to touch after the walkthrough.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/Harvest-Dev/ng-walkthrough/issues/29#issuecomment-469600039, or mute the thread https://github.com/notifications/unsubscribe-auth/ATvfIT3LgRK8jSTXrxEg0c7mFg7LsjZzks5vTjRagaJpZM4bblEz .

kashif-imagyn avatar Mar 06 '19 07:03 kashif-imagyn