Hi Everyone.
I'm working with compose multiplatform and I see that there are libraries for navigation purposes like Voyager, Decompose, PreCompose and all.
But is there any other way to achieve navigation for both ios and android platforms without relying on these libraries?
Any resources that I can checkout for the same?
p
Pablichjenkov
12/15/2023, 2:45 PM
You can create your own navigation utilities. All you need is swapping Composable depending on the state. But I don't think you will create something much different from the above libraries. What are you looking for more specifically?
b
Bhavya Sikka
12/18/2023, 10:06 AM
Heyy,
was trying voyager an was facing some limitations while implementing bottom nav. So was wondering if there was a native solution.
The compose native navigation that we have (one where we declare routes and all) that doesn't works for ios, correct?
p
Pablichjenkov
12/18/2023, 3:24 PM
Jetpack Compose doesn't work on iOS. Did you try PreCompose? - is pretty similar to jetpack navigation
b
Bhavya Sikka
12/18/2023, 6:40 PM
No I haven;t checked PreCompose yet.
Have checked Voyager and was currently looking into Decompose.