I'm trying to show a preview of an Image in Xamarin.Forms after the user takes the picture.
In android you can set the ImageView to a bitmap:
_imageView.SetImageBitmap (App.bitmap);
Is there anyway to do this with the Image Control in Xamarin.Forms? I don't see a way to bind the Image.Source to a bitmap...