Fixed that FAB covered last expenses line of TransactionsList
This commit is contained in:
parent
484a3df42e
commit
08b55a67cf
|
@ -57,7 +57,7 @@ fun TransactionsList(uiState: UiState) {
|
|||
Text(formatUtil.formatAmount(balance, "EUR"), color = formatUtil.getColorForAmount(balance))
|
||||
}
|
||||
|
||||
LazyColumn(Modifier.fillMaxSize()) {
|
||||
LazyColumn(Modifier.fillMaxSize().padding(bottom = 12.dp)) { // padding bottom = add the space the FAB sticks into the content area (= 26 - the 16 we add at the bottom of the expenses line)
|
||||
items(groupedByMonth.keys.sortedDescending()) { month ->
|
||||
Column(Modifier.fillMaxWidth()) {
|
||||
Text(
|
||||
|
|
Loading…
Reference in New Issue