workspace/bottomsheetdialog-compose

Support edge to edge

cxjwmy opened this issue · 2 comments

consider this :
`
BottomSheetDialog(
edgeToEdge
){
Box(modifier = Modifier.navigationBarPadding()) {
content()
}

}
`

@cxjwmy Thanks for idea, however, material-components BottomSheetDialog's edgeToEdgeEnabled is not mutable parameter. I'll try to find another way to support edge to edge

@cxjwmy Check #13 (merged) and try to use enableEdgeToEdge. I hope It works as you expect!