【发布时间】:2020-09-01 09:09:45
【问题描述】:
我有一些 HTML 代码在 String 变量中,而不是在文件中。我想在 WebView 上加载这个 String-HTML
【问题讨论】:
标签: html string flutter webview webview-flutter
我有一些 HTML 代码在 String 变量中,而不是在文件中。我想在 WebView 上加载这个 String-HTML
【问题讨论】:
标签: html string flutter webview webview-flutter
使用这个包flutter_html: ^1.0.0
import 'package:flutter_html/flutter_html.dart';
SingleChildScrollView(
child: Html(
data: "<div></div>", // Your Html code over here
padding: EdgeInsets.all(8.0),
));
【讨论】: