The application is closing when selecting a file with FilePicker.
Erol ARI
0
Reputation points
var file = await FilePicker.PickAsync();
if (file != null)
{
//var fileStream = await file.OpenReadAsync();
//var fileBytes = new byte[fileStream.Length];
//await fileStream.ReadAsync(fileBytes, 0, (int)fileStream.Length);
}
Xamarin.Forms Version : 5.0.0.2622
Xamarin.Essentials : 1.8.0
Sign in to answer