I'm creating a new "Prism blank app (xamarin.Forms)" project in vs 2017 to develop an android application.
I can't seem to make an image show on the MainView
when I set the source to the image name that is the mipmap=hdpi folder.
When I use a regular Xamarin Forms project I have a drawable folder that works fine. I have tried:
<Image Source="checkmate.png"></Image>
and also binding to the view model:
<Image Source="{Binding LogoImage}"></Image>
public string LogoImage
{
get { return "checkmate.png"; }
set { LogoIm`enter code here`age = value; }
}