Right now I am creating a Xamarin application and I am using the camera to login. The application is working fine as below:
var photo = await Plugin.Media.CrossMedia.Current.TakePhotoAsync(new Plugin.Media.Abstractions.StoreCameraMediaOptions { });
The above method uses the Camera API and builds the Camera frame and Button as below:
I wanted to fire click event of the camera just after 10 seconds automatically. Kindly let me know the Event Name, which will be fired, and how will it fire?
Thanks