Set max width for TransactionsList
This commit is contained in:
parent
6fc01ad285
commit
fedbb3a544
|
@ -31,7 +31,7 @@ fun TransactionsList(transactions: List<AccountTransaction>) {
|
||||||
}
|
}
|
||||||
|
|
||||||
LazyColumn(
|
LazyColumn(
|
||||||
modifier = Modifier.padding(4.dp)
|
modifier = Modifier.padding(4.dp).widthIn(max = 800.dp)
|
||||||
) {
|
) {
|
||||||
items(groupedByMonth.keys.sortedDescending()) { month ->
|
items(groupedByMonth.keys.sortedDescending()) { month ->
|
||||||
Column(Modifier.fillMaxWidth()) {
|
Column(Modifier.fillMaxWidth()) {
|
||||||
|
|
Loading…
Reference in New Issue