Will there be any BottomSheet composable from Material which allows applying custom scrim colors & draggable to full screen even with content which occupies only half the height of the bottomsheet.
wintersoldier
02/15/2023, 9:28 AM
Already checked
Bottomsheetscaffold
, It doesn't allow to apply scrim.
With
ModalBottomSheetLayout
it expands only based on wrap content!
c
Chris Fillmore
02/15/2023, 11:21 AM
If you want it to expand to full screen, add a
Spacer(Modifier.weight(1f))
to the end of the sheet content
w
wintersoldier
02/15/2023, 11:43 AM
Hi Chris ,
This solution works when I did some workaround,
I made the host Composable content weight based on sheetstate,