Will there be an offline webview from local asset html-files in Flutter? Will there be an offline webview from local asset html-files in Flutter? flutter flutter

Will there be an offline webview from local asset html-files in Flutter?


The inAppWebView plugin does this procedure to read offline html file or online:

Link to the plugin:https://pub.dev/packages/flutter_inappwebview#-installing-tab-

Example:

InAppWebView(    initialFile: "assets/index.html")

Where in initialFile you pass the path of your HTML file that is inside your flutter project.