RxJavaFX icon indicating copy to clipboard operation
RxJavaFX copied to clipboard

RxJava bindings for JavaFX

Results 18 RxJavaFX issues
Sort by recently updated
recently updated
newest added

Only the first page is shown in the book, navigation to other pages or chapters is not working.

This is a feature that I have been wanting for a while from RxJavaFX and also has been requested in issue #72. Edit: Not sure why the CI failed...It seems...

This is an open discussion about what the best of way of setting up a build chain should be, for automatic publishing to Maven Central, and so on. My experience...

help wanted

With Java 11, reflection deprecation warnings are popping up in Gradle 4. Compile errors happen with Gradle 5. Consider ridding Mockito dependency if it cannot be resolved easily.

Hello, I'm new to RxJavaFX and was trying to test it with a maven based project that depends on rxjava3. These are the changes I needed to successfully run `./gradlew...

Hi, I tried to change openjfx version from 11 to 13.0.1 and it looks like compiled correctly, which means, as long as I understand, the library is not using any...

Hello all, I need some help maintaining RxJavaFX. I rely heavily on this library so I will always be involved, but doing ongoing maintenance and trying to deploy artifacts for...

this one should be ``` .scan(String::length) .reduce(0)... ``` not ``` .map(String::length) .reduce(0) ``` here is url: https://thomasnield.gitbooks.io/rxjavafx-guide/content/2.%20RxJava%20Fundamentals.html#scan and here is a screenshot ![image](https://user-images.githubusercontent.com/16367497/65834879-64203d00-e31a-11e9-91f4-3256cff2da9f.png)

I'm having some build issues probably related to deployment tasks. I have a strong guess the Nebula plugin is no longer supported by Netflix, which breaks with newer versions of...

```java import io.reactivex.rxjavafx.observables.JavaFxObservable; import javafx.application.Application; import javafx.beans.property.SimpleStringProperty; import javafx.beans.property.StringProperty; import javafx.stage.Stage; public class ChangesOfNullApp extends Application { public static void main(String[] args) { launch(args); } @Override public void start(Stage stage)...