private async void OnPhoto(object sender, ImageSource imgSource)
 {
     Device.BeginInvokeOnMainThread(() =>
     {
         TakePicturePage.OnPhotoCaptured(imgSource);
     });
 }
Example #2
0
 public App()
 {
     MainPage = new TakePicturePage();
 }