innomotionmedia
innomotionmedia
make sure you have your videoview in an content video, then the video player will still visible
I just had the same issue. Youl lhave to add all the needed libraries individually to Android project (about 7 back to back). After that, you will be able to...
Just update all your libraries and use pre release
The only solution rn is to add this line manually to the manifest inside appliaction tags:
@LuckyDucko Sure. I am simply using the standart iOS Alert as a custom component in a xamarin.forms application (called in PCL): void ShowAlert(string message, double seconds) { alertDelay = NSTimer.CreateScheduledTimer(seconds,...
I fixed this issue by simply not using iOS Alert but Xamarin.Forms Alert 👍 await DisplayAlert(Title, body, button1, button2). This is rendered infront of popup. Means that the user has...