Support background color

pull/13/head
singerdmx 4 years ago
parent 2cd44d93c6
commit 53557aba58
  1. 3
      app/assets/sample_data.json
  2. 6
      lib/widgets/text_line.dart

@ -40,7 +40,8 @@
}, },
{ {
"attributes":{ "attributes":{
"bold":true "bold":true,
"background":"#ebd6ff"
}, },
"insert":"mobile" "insert":"mobile"
}, },

@ -122,6 +122,12 @@ class TextLine extends StatelessWidget {
res = res.merge(new TextStyle(color: textColor)); res = res.merge(new TextStyle(color: textColor));
} }
Attribute background = textNode.style.attributes[Attribute.background.key];
if (background != null && background.value != null) {
final backgroundColor = _hexStringToColor(background.value);
res = res.merge(new TextStyle(backgroundColor: backgroundColor));
}
return TextSpan(text: textNode.value, style: res); return TextSpan(text: textNode.value, style: res);
} }

Loading…
Cancel
Save