cljfx

https://github.com/cljfx/cljfx
esp1 2020-10-28T20:46:49.120600Z

is there an example of how to do drag and drop with cljfx?

vlaaad 2020-10-28T21:03:05.121900Z

@esp1 I haven't seen any. I would guess it would be similar to how it's done in plain JavaFX, since most of the stuff is happening in event handlers. cljfx props for drag event handlers can be found here: https://github.com/cljfx/cljfx/blob/master/src/cljfx/fx/node.clj#L58-L63

esp1 2020-10-28T21:05:12.122300Z

ok great, thanks!