Hi! I am exploring Navigation3, more specifically ...
# compose
h
Hi! I am exploring Navigation3, more specifically displaying dialogs and bottom sheets. I've seen in the recipes repo one example of a bottom sheet scene strategy:
NavDisplay(sceneStrategy = bottomSheetStrategy)
and another example of dialog scene strategy:
NavDisplay(sceneStrategy = dialogStrategy)
But what if I want to display one entry as a dialog and another entry as a bottom sheet? I mean NavDisplay does take in several scene strategies.
i
sceneStrategy = bottomSheetStrategy then dialogStrategy
👍 2
Put them in the order you want them to be considered
h
Nice. Thanks!