我试图覆盖openFileChooser / onShowFileChooser /(在IOS上也是如此),在Web视图中使用抖动(我使用过flutter_webview_plugin和webview_flutter)。
有没有一种方法可以仅使用颤动来实现? (否则,我必须为IOS和android找到解决方案)
答案 0 :(得分:0)
您可以使用我的插件flutter_inappwebview,它是Flutter插件,允许您添加内联WebView或打开应用程序内浏览器窗口,并且具有许多事件,方法和选项来控制WebView。 / p>
在Android上,它实现了openFileChooser
/ onShowFileChooser
,因此您可以使用<input type="file">
或<input type="file" accept="image/*" capture>
(请参阅How to enable the usage of camera for HTML inputs such as <input type="file" accept="image/*" capture>
)。