mirror of
https://github.com/Aviortheking/Neo-Store.git
synced 2025-07-25 13:19:52 +00:00
Fix: Empty list note readability
This commit is contained in:
@ -98,6 +98,9 @@ fun <T> VerticalItemList(
|
|||||||
LazyColumn(verticalArrangement = spacedBy(4.dp)) {
|
LazyColumn(verticalArrangement = spacedBy(4.dp)) {
|
||||||
items(items = list, key = itemKey, itemContent = itemContent)
|
items(items = list, key = itemKey, itemContent = itemContent)
|
||||||
}
|
}
|
||||||
} else Text(text = stringResource(id = R.string.no_applications_available))
|
} else Text(
|
||||||
|
text = stringResource(id = R.string.no_applications_available),
|
||||||
|
color = MaterialTheme.colorScheme.onBackground
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
Reference in New Issue
Block a user