:bulb: Did you know you can preview LazyPagingItem...
# feed
m
💡 Did you know you can preview LazyPagingItems : You can use
PagingData.empty()
or
PagingData.from(List<T>)
, like this:
Copy code
@Preview
@Composable
fun Preview() {
    DefaultTheme {
        MainUi(users = flowOf(PagingData.from(listOf(User(..)))).collectAsLazyPagingItems()
    }
}
💚 1