Skip to content

Commit

Permalink
Containers size test.
Browse files Browse the repository at this point in the history
  • Loading branch information
Miguel Lasa committed Mar 4, 2024
1 parent 353644c commit aa7e462
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions composeApp/src/commonMain/kotlin/ui/dashboard/Dashboard.kt
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ fun Dashboard(viewModel: DashboardViewModel) {
)
}
}
Box(modifier = Modifier.fillMaxHeight().weight(1f)) {
when(selectedElement) {
UiElement.BUTTON -> QButtonScreen()
null -> TODO()
}
Box(modifier = Modifier.fillMaxHeight().weight(1f).background(Color.Red)) {
// when(selectedElement) {
// UiElement.BUTTON -> QButtonScreen()
// null -> TODO()
// }
}
}
}

0 comments on commit aa7e462

Please sign in to comment.