If possible, you can display PDF documents and visit online websites using the add-in: import ‘dart:html’ as html; html. window. open(‘http:///www.website.com/document.pdf’); 8 Ağu 2019
Read moreHow do I give permission in WebView Flutter?
To request permissions about the camera and microphone, you can use the permission_handler plugin . Also, it has the androidOnPermissionRequest event for Android, that is an event fired when the WebView is requesting permission to access the specified resources (that is the Android native WebChromeClient.6 Haz 2019
Read moreCan Flutter use as WebView?
Flutter doesn’t have built-in support for embedded WebViews. Follow issue 730 for updates. You can still show web content in your app, but you’ll have to leave Flutter-land using the plugin system. If you just want to open a browser, you can use the url_launcher Flutter plugin.
Read more