I am using RxSwift as part of a project that someone else started.
Wanting to understand a bit more on the theory of ReactiveX I bumped into React Native and Rx.Net.
I would like to make sure I understand the following correctly:
- React Native is a Java Script library that allows developers to build native user interfaces. The library translates Javascript code into native mobile code.
- RxSwift aims to implement concepts of Rx.Net but is different and not directly linked to React Native. The commonality is that they both implement concepts of Reactive programming hence why the shared use of the word "React" / "Reactive" in their name. That's where the commonalities should end, right?
Conclusions:
- As both RxSwift and React Native are tightly connected to the user interface implementation it is not possible to use them together. Correct?