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,8 +109,10 @@ class _ArticlePageState extends State<ArticlePage> {
children: [
Container(
margin: const EdgeInsets.all(12.0),
child: SelectableHtml(
data: widget.article.html,
child: SelectionArea(
child: Html(
data: widget.article.html,
),
),
)
],