How to render a local HTML file with flutter dart webview

I am using the webview_flutter plugin from the Flutter Team. Steps Add the dependency to pubspec.yaml: dependencies: webview_flutter: ^0.3.20+2 Put an html file in the assets folder (see this). I’ll call it help.html. Get the html string in code and add it to the webview. import ‘dart:convert’; import ‘package:flutter/material.dart’; import ‘package:flutter/services.dart’; import ‘package:webview_flutter/webview_flutter.dart’; class HelpScreen … Read more