Removed unnecessary modifier

This commit is contained in:
dankito 2024-09-05 00:05:10 +02:00
parent 88ca75460b
commit d22ff34a37
1 changed files with 2 additions and 2 deletions

View File

@ -49,9 +49,9 @@ fun App() {
MaterialTheme(colors = colors, typography = typography) {
SideMenu {
Box(modifier = Modifier.background(Colors.CodinuxSecondaryColor).padding(0.dp)) {
Box {
Column(
Modifier.fillMaxWidth().fillMaxHeight().background(color = Colors.Zinc100)
Modifier.background(color = Colors.Zinc100).fillMaxWidth()
) {
Column(Modifier.fillMaxWidth().weight(1f), horizontalAlignment = Alignment.CenterHorizontally) {
TransactionsList(DI.uiState)