我尝试使用Modifier.animateItemPlacement()
修饰符对LazyVerticalStaggeredGrid
中的元素进行动画处理,但出现错误:"Cannot access 'LazyGridItemScopeImpl': it is internal in 'androidx.compose.foundation.lazy.grid'"
个
我的代码:
import androidx.compose.foundation.lazy.grid.LazyGridItemScopeImpl.animateItemPlacement
LazyVerticalStaggeredGrid(
columns = StaggeredGridCells.Adaptive(150.dp),
modifier = Modifier.fillMaxSize()
) {
items(noteItems.value.size, key = { noteItems.value[it].id!! }) { item ->
NoteItem(modifier = Modifier.animateItemPlacement(), noteItems.value[item])
}
}
字符串
网上没有信息,我不知道该怎么办
1条答案
按热度按时间w6lpcovy1#
我试过你的代码和所有的工作正常.这是我的依赖.
字符串
你能分享一下你的依赖吗?