I'm using Plugin.CrossMedia in Xamarin Forms and have noticed that just after the photo is taken, the home page is briefly shown before control returns to the calling page. This is causing issues as the Home Page OnAppearing event is not triggered later. I'm just wondering if anyone else has come across this and if they were able to resolve it.I have confirmed this on Crossmedia 2.6 and Forms 2.3.4 as well as Crossmedia 4.0 and Forms 3.1. and on multiple devices.
Thankyou for any pointers.
await CrossMedia.Current.Initialize(); var file = await CrossMedia.Current.TakePhotoAsync(new Plugin.Media.Abstractions.StoreCameraMediaOptions { PhotoSize = PhotoSize.Small, SaveToAlbum = true, CompressionQuality = 30 });
– user1180360 Nov 19 '18 at 12:56