add margin to article content
This commit is contained in:
parent
15d48b6d36
commit
0e4c13596e
|
@ -107,9 +107,12 @@ class _ArticlePageState extends State<ArticlePage> {
|
||||||
),
|
),
|
||||||
body: ListView(
|
body: ListView(
|
||||||
children: [
|
children: [
|
||||||
SelectableHtml(
|
Container(
|
||||||
|
margin: const EdgeInsets.all(12.0),
|
||||||
|
child: SelectableHtml(
|
||||||
data: widget.article.html,
|
data: widget.article.html,
|
||||||
),
|
),
|
||||||
|
)
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue