TF-583 Disable scroll bar in email view

This commit is contained in:
dab246
2022-05-26 16:29:22 +07:00
committed by Dat H. Pham
parent f379e540c6
commit 299fde93f3
2 changed files with 4 additions and 2 deletions
@@ -55,7 +55,7 @@ class _HtmlContentViewState extends State<HtmlContentViewer> {
}
String _generateHtmlDocument(String content) {
final htmlTemplate = generateHtml(content);
final htmlTemplate = generateHtml(content, hideScrollBar: true);
return htmlTemplate;
}