S Ravi Kumar
S Ravi Kumar

Reputation: 28

Does ReactiveUI for Xamarin supports ViewModel to ViewModel Navigation

I am in process of learning Reactive UI for Xamarin and going through the documentation. However was not able to find that does it supports ViewModel to ViewModel Navigation. Is there any example application for same.

Upvotes: 0

Views: 659

Answers (3)

Pulkit Sethi
Pulkit Sethi

Reputation: 1325

You can do it natively by following approach described here https://blog.kloud.com.au/2018/05/15/data-first-approach-in-xamarin-forms/

Upvotes: 0

Thomas
Thomas

Reputation: 9257

At the moment navigation support for Xamarin forms is somewhat limited. So is is not possible to select if a Page should be Pushed Modal or not. After trying to use RxUI nagivation I surrendered and now use RxUI together with xamvvm framework to deal with Page/ViewModel creation and ViewModel based navigation.

Check it out https://github.com/xamvvm/xamvvm/wiki

Upvotes: 1

Marc Bruins
Marc Bruins

Reputation: 136

Please have a look at this issue: https://github.com/reactiveui/ReactiveUI/issues/1048 There are ways to do it but you'll have to implement it yourself.

Upvotes: 0

Related Questions