Hi I was searching for a BottomSheet behavior on t...
# compose
k
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
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.
Also, you can use
BottomDrawerLayout
to achieve similar (maybe slightly different from what exactly you want) behaviour
❤️ 1
k
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
Draggable is a nice choice indeed, it's what I use as a implementation for BottomDrawerLayout 🙂 Let me know how this works for you!
k
Awesome, I’ll work on that by the weekend!
and I will check for sure that class first