fluttercandies/flutter_filereader

Add Network Support Please. Load Files from Network.

Closed this issue · 2 comments

Add Network Support Please. Load Files from Network. Aloow app to open files from network directly without downloading.

Sorry, the x5webview used on Android does not support online file preview

For anyone want to have this package for network file.

Dio dio = Dio();
    var dir = await getApplicationDocumentsDirectory();
    try {  
      await dio.download(fileurl, "${dir.path}/"+ fileurl.split('/').last,
          onReceiveProgress: (rec, total) { 
      });
    } catch (e) {
      print(e);
    } 

after saving the file to localstorage. Pass it to FileReader