[IOS] Swipe to back on IOS
Hi, At first, your lib is great! Second, how can I swipe to go back to previous screen like Ios native ?
@hoanghai9650 Hi, thanks for advise, going to add it (iOS swipe back action, or else smth to interact/pass into lib)
Research result: iOS nativ nav seems to use somthing close to android shared-transition (especially for top bar) Animation itself is easy to replicate with
Navigation(
...
contentTransformProvider = { navigationSlideInOut(it) },
...
)
It is also possible to add global wraper (box + touchHandled) with touch action to perform global back action (contact me for more details if needed)
Will wait to shared-element-transition to be fixed and release, next will add fully functional example (or maybe direct implementation)
PS: feature/predictive-back - here is some very basic example on how it migh looks
UPD: work in progress, https://github.com/ComposeGears/Tiamat/tree/feature/content-transition-impl here is impl. Waiting for google to fix seekable transition bug
UPD: google did fix it... https://github.com/ComposeGears/Tiamat/tree/feature/content_transition here is initial implementation