open_file icon indicating copy to clipboard operation
open_file copied to clipboard

A plug-in that can call native APP to open files with string result in flutter, support iOS(UTI) / android(intent) / PC(ffi) / web(dart:html)

Results 108 open_file issues
Sort by recently updated
recently updated
newest added

Hi! I'm getting an error while compiling for Flutter web, as "open" method signature is different open_file/lib/src/web/open_file.dart > static Future open(String filePath, while for other platforms open_file/lib/src/plaform/open_file.dart, filePath is a...

`.pub-cache/hosted/pub.dartlang.org/open_file-3.2.1/lib/src/web/web.dart:4:8: Error: Not found: 'dart:html' .pub-cache/hosted/pub.dartlang.org/open_file-3.2.1/lib/src/web/web.dart:7:10: Error: Getter not found: 'window'. ` Can open_file-3.2.1 be used without importing dart.html? I only use this on android and iOS

Here we have some default permissions https://github.com/crazecoder/open_file/blob/master/android/src/main/AndroidManifest.xml#L5-L6 1. How can I remove them? 2. Why we have `REQUEST_INSTALL_PACKAGES`? 3. I am always using [getApplicationDocumentsDirectory](https://pub.dev/documentation/path_provider/latest/path_provider/getApplicationDocumentsDirectory.html) so I think `READ_EXTERNAL_STORAGE` is redundant...

Hello, For iOS 14, opening downloaded file results in a crash. Fatal Exception: NSInvalidArgumentException -[NSNull _fastCharacterContents]: unrecognized selector sent to instance 0x1fcad5f00 ``` Fatal Exception: NSInvalidArgumentException 0 CoreFoundation 0x1af055114 __exceptionPreprocess...

Hey, I'm having issues opening a .js extension file on my Pixel 3A (Android 10) - works fine on iOS. My current solution is to just force the file to...

```dart MethodChannel("open_file") .setMockMethodCallHandler((MethodCall methodCall) async { print(methodCall); return "."; }); ``` The above code is not working, Is there anything wrong?

Hi @crazecoder, Isn't it possible to open files from the assets folder? It isn't accessing anything. I have added their path to the pubsec.yaml file but getting fileNotFound error. I...

I'm trying to test my app on simulator, running XCode Version 11.4 (11E146), but I'm getting this error ``` Undefined symbols for architecture i386: "_FlutterMethodNotImplemented", referenced from: -[OpenFilePlugin handleMethodCall:result:] in...