Issue
I'm new to mobile development and I wanted to ask about a way to switch pages without the navigation swipe effect, just press the button and the required page will appear instead of the old one. I thought about the TabbedPage but it won't work with my UI. Thanks
Solution
when you push the screen, just write to animate argument false
await Navigation.PushAsync (newPage, false);
Answered By - Gad
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.