Raised spacing between balance and settings icon and reduces padding to right margin
This commit is contained in:
parent
466ab84c36
commit
8c24b83ecf
|
@ -75,7 +75,7 @@ fun SideMenuContent() {
|
||||||
|
|
||||||
ItemDivider(color = Colors.DrawerDivider)
|
ItemDivider(color = Colors.DrawerDivider)
|
||||||
|
|
||||||
Column(Modifier.padding(horizontal = 16.dp, vertical = 24.dp)) {
|
Column(Modifier.padding(vertical = 24.dp).padding(start = 16.dp, end = 4.dp)) {
|
||||||
Column(Modifier.height(ItemHeight), verticalArrangement = Arrangement.Center) {
|
Column(Modifier.height(ItemHeight), verticalArrangement = Arrangement.Center) {
|
||||||
Text("Konten", color = textColor)
|
Text("Konten", color = textColor)
|
||||||
}
|
}
|
||||||
|
|
|
@ -104,7 +104,7 @@ fun NavigationMenuItem(
|
||||||
Text(
|
Text(
|
||||||
formatUtil.formatAmount(balance, calculator.getTransactionsCurrency(emptyList())),
|
formatUtil.formatAmount(balance, calculator.getTransactionsCurrency(emptyList())),
|
||||||
color = if (showColoredAmounts) formatUtil.getColorForAmount(balance, showColoredAmounts) else textColor,
|
color = if (showColoredAmounts) formatUtil.getColorForAmount(balance, showColoredAmounts) else textColor,
|
||||||
modifier = Modifier.padding(start = 4.dp)
|
modifier = Modifier.padding(start = 8.dp)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue