我认为标题说明了一切。
LazyPagingItems
构造函数是内部的。我不能LazyPagingItems
在 Preview Composable 中作为参数传递,更不用说传递示例数据了。但是我想显示我的可组合的预览,我应该怎么做?
@Composable
fun MainUi(users: LazyPagingItems<User>) {
Scaffold {
LazyColumn() {
items(users) {
// Rest of the code..
}
}
}
}
@Preview
@Composable
fun Preview() {
DefaultTheme {
MainUi(users = ) // How to pass sample data here?
}
}