ursus
04/30/2025, 3:09 PM@Composable
fun MyColumn(items: List<String>) {
Column {
for (item in items) {
Item(item)
}
}
}
@Composable
fun Item(text: String) {
Text(text = text)
}
How do I animate changes to this items
list? I cannot use a LazyColumn as this will be a part of a scrolling container Column anyways