-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No implementation found for method saveFile on channel flutter_file_dialog #50
Comments
Same problem here. Many users reporting it lately. |
Is this library abandoned? Just to know if I have to migrate elsewhere... |
Does this happen on Android or iOS? What is the OS version? If possible please provide detailed steps and a sample app to reproduce the issue. |
Application is android and android 11 lutter (Channel stable, 3.16.9, on Microsoft Windows [Version 10.0.22631.3296], locale tr-TR) |
Ensure you add the requried permissions to the manifest and info.plist guys NSPhotoLibraryAddUsageDescription |
Hello,
I'm using OpenFileDialogParams pickFile;
It throws error : No implementation found for method saveFile on channel flutter_file_dialog. When not select file with this method and after close page and try savedialog file in another page
My code;
final params = OpenFileDialogParams(
dialogType: OpenFileDialogType.image,
sourceType: SourceType.photoLibrary,
);
result = await FlutterFileDialog.pickFile(params: params);
// Navigator.of(context).pop(true);
if (result != null) if (p.extension(result) != '.png' &&
p.extension(result) != '.jpeg' &&
p.extension(result) != '.jpg') {
AppService.helper.showSnackBar(
TranslateLanguage.of(context).localisedString(
'error_extension', {'ext': '.jpeg,png or jpg'}),
false,
this.context);
} else {
_path = result;
_setImageWidget();
}
Can you help?
The text was updated successfully, but these errors were encountered: