Working with images - UXDivers/Gorilla-Player-Support GitHub Wiki
Working with images
Gorilla Player allows to preview your app images without any additional steps you take when adding images on a Xamarin Forms project.
Adding images to your resources folder
Just include the images you need on the Resource folder of your project as usually:
- Locate the Resources folder
- Click add > Add Files... > 3. Select the files you need to include.
...or simply drag and drop your images into that Resources folder of your project as you would typically do on Xamarin Studio.
Adding images on your XAML
Simply add the Image control and point the Source attribute to your image:
<Image Source="YourImage.png" />