Fixed spacing between item text and balance
This commit is contained in:
parent
a92d6a1401
commit
f440a01531
|
@ -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)
|
||||
)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue