I want to open a custom "sheet" when the user pres...
# compose
k
I want to open a custom "sheet" when the user presses a button. Not a BottomSheet but rather some content that draws over the bottombar and topbar, taking all space available. How can I do that with
NavGraph
if my
NavGraph
is nested inside a
Scaffold
?
1
i
You might look at how Accompanist Navigation Material works as inspiration for writing your own
sheet
destination type: https://google.github.io/accompanist/navigation-material/
You'll still need some layout outside of your
Scaffold
(ala how Accompanist Navigation Material uses
ModalBottomSheetLayout
) that is the container for your "sheet" that extends over your bottom bar, top bar, and everything else
1