Is there a way to add update animations in `Adapte...
# compose
y
Is there a way to add update animations in
AdapterList
when items are added/removed/moved I have a simple tasks list function where checked items move to the bottom. However, it happens almost instantly without any delay at all.
Copy code
@Composable
fun TaskList(taskHandler: TaskHandler) {
    AdapterList(data = taskHandler.list.sortedBy { it.isChecked }) {
        TaskItem(task = it, taskHandler = taskHandler)
    }
}
a
hey, unfortunately we don't provide such functionality yet. but we will add something to solve it in the future
y
Looking forward to it!