Skip to content

Commit

Permalink
🎨 Fixed UI elements
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzovngl committed Jan 28, 2024
1 parent 213b4c4 commit 98169fc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ package com.lorenzovainigli.foodexpirationdates.view.composable

import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.filled.Info
import androidx.compose.material.icons.filled.List
import androidx.compose.material.icons.automirrored.filled.List
import androidx.compose.material.icons.filled.Settings
import androidx.compose.material.icons.outlined.Info
import androidx.compose.material.icons.outlined.List
import androidx.compose.material.icons.automirrored.outlined.List
import androidx.compose.material.icons.outlined.Settings
import androidx.compose.material3.Icon
import androidx.compose.material3.NavigationBar
Expand Down Expand Up @@ -38,8 +38,8 @@ fun MyBottomAppBar(
NavigationItem(
label = stringResource(id = R.string.list),
route = Screen.MainScreen.route,
selectedIcon = Icons.Filled.List,
unselectedIcon = Icons.Outlined.List
selectedIcon = Icons.AutoMirrored.Filled.List,
unselectedIcon = Icons.AutoMirrored.Outlined.List
),
NavigationItem(
label = stringResource(id = R.string.settings),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,11 @@ fun SettingsScreen(
)
}
}
Spacer(
modifier = Modifier
.fillMaxHeight()
.weight(0.1f)
)
}
}
}
Expand Down

0 comments on commit 98169fc

Please sign in to comment.