What would be the implications of doing B) instead...
# compose
m
What would be the implications of doing B) instead of A):
LazyColumn {
// A
itemsIndexed(...){
Column{
composableA()
composableB()
}
}
// B
itemsIndexed(...){
composableA()
composableB()
}
}
The doc says it should be a SINGLE item
e
I’m pretty sure the docs also explain what will happen if you do B. Some weirdness with scrolling & item indexes (understandably).
s
No implications, it will just position them as a column
👍🏾 1
The "single" in the docs refers to the fact that content should be based on the item for that particular index/item only.