Exemplo n.º 1
0
 public void ChooseImage()
 {
     NativeGallery.Permission permission = NativeGallery.GetImageFromGallery((path) =>
     {
         if (path != null)
         {
             targetManager.CreateNewTarget(path);
         }
     }, "Select a PNG image");
 }