Are there any plans to support type-safe argument ...
# compose
c
Are there any plans to support type-safe argument navigation with Bottom sheets in compose? It seems like both composables and dialogs are supported but bottom sheets are strangely still reliant on strings. I know you can do it with certain libraries, but I'm curious about the official navigation-compose library
Currently I'm not able to say
Copy code
@Serializable
data object NewsBottomSheet
bottomsheet(NewsBottomSheet) { NewsBottomSheetComposable() }
for example.
c
Possibly? In the mean time I suppose we could just use kiwi as it's basically the same as the official library but has bottom sheet support