Fixed spacing between item text and balance

This commit is contained in:
dankito 2024-09-09 22:54:33 +02:00
parent a92d6a1401
commit f440a01531
1 changed files with 2 additions and 1 deletions

View File

@ -86,7 +86,8 @@ fun NavigationMenuItem(
if (balance != null) {
Text(
formatUtil.formatAmount(balance, calculator.getTransactionsCurrency(emptyList())),
color = if (showColoredAmounts) formatUtil.getColorForAmount(balance) else textColor
color = if (showColoredAmounts) formatUtil.getColorForAmount(balance) else textColor,
modifier = Modifier.padding(start = 4.dp)
)
}
}