Hi All, does anyone know if Jetpack Compose's Swip...
# compose
e
Hi All, does anyone know if Jetpack Compose's SwipeToDismiss state i.e. `
Copy code
val dismissState = rememberDismissState
will always remember the item of a given ID. Even if we have refresh the entire list to a new list, if the new list have an ID same as one of the item as the previous one, the dismissState will remember the older item instead (of refreshing to the newer item of the same ID)? For better illustration of the issue, I have the simple code design showing the issue in https://stackoverflow.com/questions/75040603/is-composes-swipe-to-dismiss-state-always-remember-the-old-item-based-on-id-ev with a GIF showing how it will crash