markturnip
07/22/2024, 9:31 AMBox
at root level of my detail?
@Composable
fun DetailScreen(navController: NavController, itemId: String?) {
Box(
modifier = Modifier
.fillMaxSize() // Make the Box fill the entire screen
.background(color = Color.DarkGray) // Set the background color to dark grey
.padding(16.dp) // Add padding to the content
) {
Column(
modifier = Modifier.fillMaxWidth()
) {
TopAppBar(
title = { Text("Detail Screen") },
navigationIcon = {
(ignore the designs here, just a sandbox app!)markturnip
07/22/2024, 9:31 AM