Add a horizontal scrollbar to an HTML

This commit is contained in:
ManhNTX
2022-06-29 23:22:49 +07:00
committed by Dat H. Pham
parent 509fe0d925
commit 06931c0581
3 changed files with 5 additions and 3 deletions
@@ -55,7 +55,7 @@ class _HtmlContentViewState extends State<HtmlContentViewer> {
}
String _generateHtmlDocument(String content) {
final htmlTemplate = generateHtml(content, hideScrollBar: true);
final htmlTemplate = generateHtml(content, hideScrollBar: false);
return htmlTemplate;
}