Here's code that a user might write: ``` runtime.add(draggable, view); ReactiveProperty.of(view, CENTER).subscribe( value -> { log(value); }) ``` This wouldn't work because `Draggable` writes to the view's TRANSLATION instead of CENTER. However, the user may expect this to work.
Here's code that a user might write:
This wouldn't work because
Draggablewrites to the view's TRANSLATION instead of CENTER. However, the user may expect this to work.