galex
11/22/2025, 8:15 AMnav3 now that I started to use it more deeply:
1. There's only one SceneStrategy parameter on NavDisplay, what if I want to use multiple ones on different screens, meaning sometimes I need dialogs, sometimes bottom sheets, sometimes list-detail, etc...
2. Using the bottom sheet recipe in addition to the ResultEventBus recipe, how can I be notified that the bottom sheet is dismissed so I can trigger a Result on the screen that opened it?
Thank you in advance!Jonas
11/22/2025, 10:58 AMgalex
11/22/2025, 11:18 AMJonas
11/22/2025, 3:11 PMIan Lake
11/22/2025, 4:26 PMdialogStrategy then bottomSheetStrategy is unambiguousIan Lake
11/22/2025, 4:29 PMonDispose of a DisposableEffect inside the bottom sheet? That will get called when the sheet is removed from composition (like when it is popped)galex
11/22/2025, 6:51 PMKamilH
11/24/2025, 8:16 AMLaunchWhenResumed instead of LaunchedEffect also cover this use case? So, observing the event only if the `ResultEffect`’s user is in at least a resumed stateIan Lake
11/24/2025, 2:49 PMKamilH
11/24/2025, 2:52 PM