From 53557aba583d41e9d80f27da67463d64a7c5a3da Mon Sep 17 00:00:00 2001 From: singerdmx Date: Tue, 22 Dec 2020 11:58:13 -0800 Subject: [PATCH] Support background color --- app/assets/sample_data.json | 3 ++- lib/widgets/text_line.dart | 6 ++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/app/assets/sample_data.json b/app/assets/sample_data.json index d5879f8c..f18454d7 100644 --- a/app/assets/sample_data.json +++ b/app/assets/sample_data.json @@ -40,7 +40,8 @@ }, { "attributes":{ - "bold":true + "bold":true, + "background":"#ebd6ff" }, "insert":"mobile" }, diff --git a/lib/widgets/text_line.dart b/lib/widgets/text_line.dart index 931ead5c..6aae72e6 100644 --- a/lib/widgets/text_line.dart +++ b/lib/widgets/text_line.dart @@ -122,6 +122,12 @@ class TextLine extends StatelessWidget { 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); }