python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Ionic5 IOSFilePicker convert uri to blob
I use this method:
getFiles(){
this.filePicker.pickFile().then(uri => {
console.log('uri '+uri);
})
.catch(err => console.log('Error', err));
}
And I want convert uri to blob because I need t...
Réda Youssoufi
Votes: 0
Answers: 1
2 positional argument(s) expected, but 1 found. and The argument type 'String?' can't be assigned to the parameter type 'List<Object>'
I have been able to open my files using the file picker package but I am to save the result path to the pdfFile variable.
This is the variable
File? pdfFile;
I am getting the error from the code belo...
Samuel
Votes: 0
Answers: 2
Xamarin.Essentials FilePicker causes restart of app
We have a Xamarin Forms app that has a tab view. From one of the tabs, we open a new Content Page, which needs to have an option to select files and upload the attachment.
Using Xamarin.Essentials Fil...

manishKungwani
Votes: 0
Answers: 1
Unable to pick file (pdf, doc, docx) from download folder in Android 11 and above
I'm using the File Picker library.
Permission code:
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.R || Environment.isExternalStorageManager()) {
//Toast.makeText(this,...

Ashwin H
Votes: 0
Answers: 2