Hi,
I need to implement a functionality where the user can continuously take photos from my app until they click 'cancel'.
CrossMedia.Current.TakePhotoAsync
I have tried looping as shown below, but each time a photo is taken and 'use photo' is clicked, the app page appears momentarily and then the camera reappears. I would like the camera to stay open until 'cancel' is clicked.
Is this possible?while (isCamera) { file = await CrossMedia.Current.TakePhotoAsync(new Plugin.Media.Abstractions.StoreCameraMediaOptions { }); if (file != null) { //save photo } } else isCamera = false; }
Cross-apps
On googling, I found suggestions about 'cross-apps' but cant seem to find any sample code. Have any of you used this for the above scenario? If so, could you please share some sample code?
Thank you :)