Use SelectableHtml instead of Html

Fixes #3
This commit is contained in:
Lea 2023-01-20 10:12:49 +01:00
parent 26880f8fb3
commit 1a09ba2ba9
Signed by: Lea
GPG key ID: 1BAFFE8347019C42

View file

@ -107,7 +107,7 @@ class _ArticlePageState extends State<ArticlePage> {
), ),
body: ListView( body: ListView(
children: [ children: [
Html( SelectableHtml(
data: widget.article.html, data: widget.article.html,
), ),
], ],