Skip to content

Instantly share code, notes, and snippets.

@RudraOp9
RudraOp9 / UpLiftedBottomSheet.kt
Created April 11, 2024 04:11
How to make an ModalBottomSheet uplifted in Compose ? an uplifted bottom sheet looks good as compared to default one.
@OptIn(ExperimentalMaterial3Api::class)
@Composable
fun Parent() {
var boo by rememberSaveable {
mutableStateOf(false)
}
Button(onClick = { boo = true }) {
Text(text = "Click to see")