brabo-hi
Scaffold
TopAppBar
BottomAppBar
Colton Idle
@ExperimentalMaterial3Api @Composable fun MyComponent() { Scaffold( modifier = Modifier, topBar = { CenterAlignedTopAppBar( title = { Text(text = "Title", style = MaterialTheme.typography.titleLarge) }, actions = { IconButton( onClick = {}, content = { Icon(Icons.Default.Paid, contentDescription = null, tint = Color.LightGray) } ) } ) }, bottomBar = { Icon(Icons.Filled.Favorite, contentDescription = null) Icon(Icons.Filled.AccessTime, contentDescription = null) } ) { Surface(modifier = Modifier.fillMaxSize(), color = Color.Transparent) { AndroidView( factory = { context -> videoViewFull }, update = { } ) } } }
A modern programming language that makes developers happier.