fix: android markdown webview render

closes #123
This commit is contained in:
Rongjian Zhang 2020-12-13 13:53:20 +08:00
parent 378d406d37
commit fb3ed14b4f
1 changed files with 2 additions and 2 deletions

View File

@ -48,8 +48,8 @@ class _HtmlViewState extends State<HtmlView> {
encoding: Encoding.getByName('utf-8'),
);
return Container(
height:
height ?? 0.01, // 0 would return the wrong height on page finished.
height: height ??
1, // must be integer(android). 0 would return the wrong height on page finished.
child: WebView(
initialUrl: uri.toString(),
javascriptMode: JavascriptMode.unrestricted,