Home > Net >  File Upload dose not work inside flutter webview
File Upload dose not work inside flutter webview

Time:07-29

I am creating a flutter app using webview_flutter plugin, everything is working fine. In the website, there is a form in which users can upload images. When I click on upload from android application which I've created using webview_flutter plugin, it does nothing.

CodePudding user response:

Use flutter_webview_pro Package. It Support photo upload

CodePudding user response:

webview_flutter plugin has yet to have support for file upload. You can track the currently open ticket related to this issue here. In the meantime, you can use either flutter_inappwebview or flutter_webview_plugin as a workaround.

  • Related