```@Composable fun MyColumn(items: List<String&...
# compose
u
Copy code
@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