switch (action)
{
case takeVideoText:
file = await MediaPicker.TakeVideoAsync(new StoreVideoOptions { Quality = VideoQuality.Medium, CompressionQuality = 80, SaveToAlbum = true, Name = "", Directory = "" });
isVideo = true;
break;
case chooseVideoText:
file = await MediaPicker.PickVideoAsync();
isVideo = true;
break;
}
currently using dis, but not working....I mean it doesnt save in the gallery