1

I am redirected to a site using webview. A photo needs to be selected on the site I reference, but when I call the site with webview, this selection screen does not appear. How can i fix that?

enter image description here

Here is my android-manifest permissions:

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_INTERNAL_STORAGE" />
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.READ_INTERNAL_STORAGE" />
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
Mert
  • 230
  • 1
  • 13

1 Answers1

0

This package work for me

Here is my code:

  WebviewScaffold(
  url: 'www.google.com',
  withLocalStorage: true, //for upload files
);
Mert
  • 230
  • 1
  • 13