I am using xamarin.plugin.filepicker
it works fine with android. but with IOS (iPhone 6+) it did not work.
once it come to this code:
var file = await CrossFilePicker.Current.PickFile();
it stuck and does not continue, the application not freese, it works fine, but not get any result from "await CrossFilePicker.Current.PickFile();".
Even if i click "cancel" or select a file, nothing let the code go after this line:
var file = await CrossFilePicker.Current.PickFile();
There are no errors, nothing at all.
I am using the last stable version of the plugin, then I also tried "2.1.14-beta".
the question is : why the code does not go to the "if (file != null)" statement ever?
var file = await CrossFilePicker.Current.PickFile(); << Stop here
if (file != null) << Not come here ever
Thanks in advance