flutter_file_dialog icon indicating copy to clipboard operation
flutter_file_dialog copied to clipboard

No implementation found for method saveFile on channel flutter_file_dialog

Open tuceturan opened this issue 11 months ago • 4 comments

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?

tuceturan avatar Mar 21 '24 12:03 tuceturan

Same problem here. Many users reporting it lately.

aleripe avatar Mar 25 '24 10:03 aleripe

Is this library abandoned? Just to know if I have to migrate elsewhere...

aleripe avatar Mar 30 '24 16:03 aleripe

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.

kinex avatar Apr 14 '24 08:04 kinex

Application is android and android 11

lutter (Channel stable, 3.16.9, on Microsoft Windows [Version 10.0.22631.3296], locale tr-TR) [√] Windows Version (Installed version of Windows is version 10 or higher) [√] Android toolchain - develop for Android devices (Android SDK version 34.0.0)

tuceturan avatar Apr 15 '24 06:04 tuceturan