https://kotlinlang.org logo
#compose
Title
# compose
m

Mehdi Haghgoo

07/30/2020, 6:07 PM
@Devesh Sanghvi what do you mean by BottomDrawableLayout? Is it a composable in Jetpack Compose? How do you create it? Could you please share some code?
d

Devesh Sanghvi

07/30/2020, 6:31 PM
Copy code
BottomDrawerLayout(
    drawerState = state,
    onStateChange = onStateChange,
    gesturesEnabled = false,
    drawerContent = {
        AppDrawer { onStateChange(DrawerState.Closed) }
}){
    Content ({ onStateChange(DrawerState.Opened) }, onBack)
}
AppDrawer is the Composable function for bottom sheet and Content is the Composable function for the main UI screen
❤️ 1
2 Views