Djuro
07/24/2024, 1:03 PMBottomSheetScaffold
and I don't like it. It is not anywhere within the navigation system. How do you recommend this be implemented? I want to decouple those 2 screens as much as possible even though small top part of the other is being displayed over the main screenStylianos Gakis
07/24/2024, 2:35 PMcomposable("route1") {
Screen1()
}
composable("route2") {
Screen2()
}
...
composable fun Screen1() {
ScreenOneScaffold {
Screen1Contents()
Something {
Screen2Contents()
}
}
}
composable fun Screen2() {
Screen2Contents()
}
composable fun Screen2Contents(){}
So you can just re-use the UI for it normally.
It would still be two separate destinations as far as you navigation is concerned, sure, but that should be fine.Djuro
07/25/2024, 7:03 AMStylianos Gakis
07/25/2024, 7:51 AM