Any possibility to use more than one conversion for MvvmCross one binding?
For ex.:
this.CreateBinding(UIImage)
.For(i => i.Image)
.To((ViewModel model) => model.IsFavourite)
.WithConversion(new BooleanToFavouriteImageConverter(), null)
.WithConversion(new ImageToImageFromBundleConverter(), null)
.Apply();
IsFavourite is bool property, which I want to convert to an image and after that set and the image as a bundle resource?