Passing complex navigation parameters with MvvmCross ShowViewModel

I believe there may be some gremlins in that previous answer – will log as an issue :/ There are other possible routes to achieve this type of complex serializable object navigation still using Json and overriding parts of the framework, but actually I think that it might be better to just use your own … Read more

In MvvmCross how do I do custom bind properties

There’s an example of adding a custom 2-way binding for “IsFavorite” in the Conference sample – see: the binding – https://github.com/slodge/MvvmCross/blob/master/Sample%20-%20CirriousConference/Cirrious.Conference.UI.Droid/Bindings/FavoritesButtonBinding.cs the binding setup in FillTargetFactories in https://github.com/slodge/MvvmCross/blob/master/Sample%20-%20CirriousConference/Cirrious.Conference.UI.Droid/Setup.cs This example is explained a bit further in: MVVMCross Bindings in Android For a one-way “source-to-target” custom binding, the code should be a bit simpler – you … Read more