-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Back button logic #81
Comments
also swipe left-to-right "back gesture" is not working on iOS (the android one: right-to-left does on Android). |
Jetpack compose doesn't seems to support the "back gesture" in iOS yet. It's not documented in their official documentation. But I am inferring this from this discussion @ adrielcafe/voyager#144, where people have created custom solutions to accomplish this. For us, I created Gesture handler, look for horizontal drag and initiate nav.pop. Made this logic to work only in iOS. So it's working (PR: #84) Voyager folks implemented that as well. Not voyager's official solution, but people in that issue added a gist. Shall I get back to this later, once the other UI flows/issues are done? |
great work buddha, absolutely let's park that for now and come back to it when we have the MVP basics done 💪 |
* - Nav: Back button generalization * - layout improvements: consistent, better padding across screens; tested in small screen devices; BisqTextField improvements * Swipe back navigation for IOS * Fix: Back button whilte screen issue; isIOS() moved to presenter
closing this one , newer issues will be created when needed |
Generalise back button logic in Topbar component, so it works smooth across android/iOS, across RootNav and TabNav
The text was updated successfully, but these errors were encountered: