Hello, I am trying to implement items, that are re...
# compose
n
Hello, I am trying to implement items, that are rearangable via drag and drop and that are also dragable outside the app boarder (global d&d). I tried to use
AndroidViews
with
startDragAndDrop()
an
setOnDragListener()
. The rearanging I did by changing the position of the composable in which the AndroidView is in. Unfortunately with this approach, the drag shadow when released does not move back to the new position of the item but to the original position, where the drag was started. Is there any other way to implement these features?