Replies: 1 comment
-
This was partially discussed here: |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
since Android 13, Google have been working on adding support for predictive back gestures on Android. these let the user see where they'll end up when swiping or pressing back.
I think they were enabled by default in either Android 14 or 15? but in any case, they're being pushed with future versions, and (at least in my opinion) they provide a nicer user experience.
see also this from the release of Android 14.
one slight issue here is that, unlike traditional back handling, to be able to show the correct animations it needs to be certain whether swiping/pressing back will trigger a transition before the user goes back. Flutter solved this by maintaining a consistent state for whether going back will be handled/interrupted by the app or whether it'll trigger a transition - maybe something similar could be the solution here?
Beta Was this translation helpful? Give feedback.
All reactions