Gabriel Souza
Gabriel Souza
There are documentation explaining state restauration on KMP projects: https://voyager.adriel.cafe/state-restoration#multiplatform-state-restoration
The source was published here https://github.com/kihaki/droidcon_2022_voyager Thanks @kihaki
`AnimatedContentTransitionScope` has a `initialState` and `targetState`.
We have introduce a new experimental api, please check out, validate and give feedbacks. https://voyager.adriel.cafe/transitions-api/#per-screen-transitions-experimental
I don't think we should force BackHandler always. There are use cases where you make voyager backHandler nullable and use Compose BackHandler by hand.
@DevNatan can you have a change here? Not having any behavior when the BackPressed callback is null? This is avoid Voyager emit a BackHandler when some use case requires to...
Can you provide use cases that how this would help? I mean, other libraries does this, but want to understand if there are real use cases that this can help...
The API currently, for creating a custom Navigator is flexible enough, example: ```kotlin public val LocalMyCustomNavigator: ProvidableCompositionLocal = staticCompositionLocalOf { null } interface MyCustomScreenType : Screen { val header: @Composable...
The examples that I shared before does not require to change anything on the navigator, you can accomplish what you want to do it this and also, the issues that...
Hi folks, sharing here an example using the PreCompose swipe back implementation in Voyager. Hopefully soon I can refine this code and bring it here again, but, for anyone that...