Hi I was searching for a BottomSheet behavior on the material package of Compose but didn’t find it, is there a plan for releasing that component? I think that can be achieved by drawing a component untils is visible and having the “peek” property defined
m
matvei
05/27/2020, 2:12 PM
Hey! Yeah, we have plants to have BottomSheet at some point in the future. We're actually quite close API wise, as you can make your own if you need to.
matvei
05/27/2020, 2:12 PM
Also, you can use
BottomDrawerLayout
to achieve similar (maybe slightly different from what exactly you want) behaviour
❤️ 1
k
kagomez
05/28/2020, 4:14 PM
I’m planning on using the draggable modifier and probably setting a View that acts as a screen with transparency; thank you very much
m
matvei
05/28/2020, 4:55 PM
Draggable is a nice choice indeed, it's what I use as a implementation for BottomDrawerLayout 🙂
Let me know how this works for you!