Skip to content

Commit 6dea9ce

Browse files
committed
Add padding to middle dot
1 parent 282ba05 commit 6dea9ce

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

lib/html_parser.dart

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -476,8 +476,10 @@ class HtmlParser {
476476
width: width,
477477
child: Row(
478478
children: <Widget>[
479-
Text('•'),
480-
Wrap(children: _parseNodeList(node.nodes)),
479+
Container(
480+
child: Text('•'),
481+
padding: EdgeInsets.symmetric(horizontal: 4.0)),
482+
Wrap(children: _parseNodeList(node.nodes))
481483
],
482484
),
483485
);

0 commit comments

Comments
 (0)