File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -500,12 +500,14 @@ class HtmlRichTextParser extends StatelessWidget {
500
500
childStyle = childStyle.merge (TextStyle (fontSize: 10.0 ));
501
501
break ;
502
502
case "mark" :
503
- childStyle = childStyle.merge (TextStyle (backgroundColor: Colors .yellow, color: Colors .black));
503
+ childStyle = childStyle.merge (
504
+ TextStyle (backgroundColor: Colors .yellow, color: Colors .black));
504
505
break ;
505
506
case "del" :
506
507
case "s" :
507
508
case "strike" :
508
- childStyle = childStyle.merge (TextStyle (decoration: TextDecoration .lineThrough));
509
+ childStyle = childStyle
510
+ .merge (TextStyle (decoration: TextDecoration .lineThrough));
509
511
break ;
510
512
case "ol" :
511
513
nextContext.indentLevel += 1 ;
@@ -672,7 +674,8 @@ class HtmlRichTextParser extends StatelessWidget {
672
674
.add (TextSpan (text: '"' , children: []));
673
675
TextSpan content = TextSpan (text: '' , children: []);
674
676
parseContext.parentElement.children.add (content);
675
- parseContext.parentElement.children.add (TextSpan (text: '"' , children: []));
677
+ parseContext.parentElement.children
678
+ .add (TextSpan (text: '"' , children: []));
676
679
nextContext.parentElement = content;
677
680
}
678
681
break ;
You can’t perform that action at this time.
0 commit comments