-
Notifications
You must be signed in to change notification settings - Fork 0
navigation drawer
milan jurkulák edited this page May 2, 2024
·
1 revision
//tvlib/org.mjdev.tvlib.ui.components.navigation/NavigationDrawer
[androidJvm]\
fun NavigationDrawer(modifier: Modifier = Modifier, visible: Boolean = true, drawerState: DrawerState = rememberDrawerState(), drawerContent: @Composable(DrawerValue) -> Unit = { Box( modifier = Modifier .conditional(visible) { width(200.dp) } .background(Color.LightGray, RectangleShape) ) }, content: @Composable() -> Unit = { Box(modifier = Modifier.fillMaxSize()) })