ReactFX
ReactFX copied to clipboard
Reactive event streams, observable values and more for JavaFX.
The use of examples, the crisp explanations, zero bloat, zero confusion, everything about it. Bravo!
JavaFX has a few different `WeakXXX` wrappers for listeners. I currently need a similar thing for a `Consumer` that I can subscribe with, but that will automatically be removed if...
It's a bit unclear what's relation between EasyBind and ReactFX. Now I'm using both of them in my project, and only recently I've discovered that ReactFX contains Val/Var in addition...
So there's something that I needed and I think it can be useful in the main repository. Changelog: * Add `LiveList#flattenVals`: basically this can be viewed as a transformation `ObservableList...
How do I pause and resume using Timer ? I followed your approach in http://tomasmikula.github.io/blog/2014/06/04/timers-in-javafx-and-reactfx.html In javafx, I can do ``` Timeline autosaveTimer = new Timeline( new KeyFrame(Duration.seconds(60 * MINUTES),...
I wanna do some work to make ReactFX running on android. Any advice? Regards
Hi, in a current project I use a lot "min" and "max" methods (like the methods from the java stream api). So in this project I wrote a small event...
I wanted to add more documentation to `EventStream` that explains a few things: - The lifecycle of an `EventStream` object: creation, subscribe, unsubscribe - `Subscription` and how and why to...
hi Tomas, does reactFX support or enable detecting mouse shake, and press-and-shake events on FX nodes ? I haven't made myself well aquanted with the library as of yet, but...
`Val` extends `javafx.beans.value.ObservableValue`. However, **"javafx-8.0.jar"** is using another version of `javafx.beans.value.ObservableValue`. So, There is a conflict happens whenever we use both jars in the same project.