We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fa8688 commit 765e101Copy full SHA for 765e101
CHANGELOG.md
@@ -1,3 +1,7 @@
1
+## [0.9.8] - May 14, 2019:
2
+
3
+* Add support for `address` tag in `RichText` parser.
4
5
## [0.9.7] - May 13, 2019:
6
7
* Added onImageError callback
lib/html_parser.dart
@@ -176,6 +176,7 @@ class HtmlRichTextParser extends StatelessWidget {
176
static const _supportedStyleElements = [
177
"b",
178
"i",
179
+ "address",
180
"em",
181
"strong",
182
"code",
@@ -446,6 +447,7 @@ class HtmlRichTextParser extends StatelessWidget {
446
447
childStyle.merge(TextStyle(fontWeight: FontWeight.bold));
448
break;
449
case "i":
450
+ case "address":
451
case "em":
452
childStyle =
453
childStyle.merge(TextStyle(fontStyle: FontStyle.italic));
0 commit comments