alorma
05/21/2021, 1:54 PMfun LazyListScope.postsListEmpty() {
item {
Box(
modifier = Modifier.fillMaxSize(),
contentAlignment = Alignment.Center,
) {
Text(text = "No items")
}
}
}
Manuel Wrage
05/21/2021, 9:59 PM