【发布时间】:2021-11-28 17:50:44
【问题描述】:
使用 compose LazyColumn 我想要一张卡片作为标题项目,以及一张包含其余项目的卡片。
LazyColumn() {
item {
Card() { // header card}
}
// would like all items in single card
Card() { // cannot do this, outside composable function
items(myItems) { item ->
// item here
}
}
}
这样的事情可能吗?
【问题讨论】:
标签: android-jetpack-compose lazycolumn