Render media in posts

Closes #8
This commit is contained in:
Lea 2023-02-04 08:44:30 +01:00
parent e9865b4c2e
commit c086599396
Signed by: Lea
GPG key ID: 1BAFFE8347019C42

View file

@ -109,9 +109,11 @@ class _ArticlePageState extends State<ArticlePage> {
children: [ children: [
Container( Container(
margin: const EdgeInsets.all(12.0), margin: const EdgeInsets.all(12.0),
child: SelectableHtml( child: SelectionArea(
child: Html(
data: widget.article.html, data: widget.article.html,
), ),
),
) )
], ],
), ),