Is it possible to use ReactiveUI with Template 10?
See original GitHub issueI read somewhere that instead of using the ViewModelBase
we can use another base class from some other MVVM framework (in my case ReactiveObject
). Is this correct? How would I go about it? Also, more importantly, would it continue to be supported with Template 10 2?
Thanks harvinder
Issue Analytics
- State:
- Created 6 years ago
- Comments:5 (4 by maintainers)
Top Results From Across the Web
A Compelling Example
ReactiveUI allows you to create views using two different approaches. The recommended approach is using type-safe ReactiveUI bindings that can save you from ......
Read more >ReactiveUI - Should I use {Binding } or this.Bind(...)?
BTW, ReactiveUI can use a separate UserControl for your DataTemplate. See this answer: stackoverflow.com/questions/25466260/… – ionoy. Apr 13, ...
Read more >ReactiveUI Vs. Vanilla MVVM : r/csharp
At least you asked here first before getting started. In total, I wasted over two weeks evaluating ReactiveUI and then some UWP templates...
Read more >Good Examples · Issue #687 · reactiveui ...
The framework could desperately use some complete working examples of applications built on the different platforms it supports.
Read more >Create Responsive Xamarin Apps with ReactiveUI
Learn how to leverage the open source MVVM ReactiveUI framework, the Observer Design Pattern, ReactiveX and more to make your Xamarin apps ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@totht91 @JerryNixon I am able to do it. I derived a class from
ReactiveObject
and implemented the 3 odd methods ofNavigationService
. That said, the view model now have a different way and classes (ReactiveCommand
) to handleINotifyPropertyChanged
event and the commands.Good work @harvinders