diff --git a/app/assets/sample_data.json b/app/assets/sample_data.json index 49cb50b0..d5879f8c 100644 --- a/app/assets/sample_data.json +++ b/app/assets/sample_data.json @@ -50,7 +50,8 @@ { "attributes":{ "underline":true, - "bold":true + "bold":true, + "color":"#e60000" }, "insert":"only" }, diff --git a/lib/models/documents/attribute.dart b/lib/models/documents/attribute.dart index 0aac8749..3e33fd92 100644 --- a/lib/models/documents/attribute.dart +++ b/lib/models/documents/attribute.dart @@ -19,6 +19,8 @@ class Attribute { Attribute.underline.key: Attribute.underline, Attribute.strikeThrough.key: Attribute.strikeThrough, Attribute.link.key: Attribute.link, + Attribute.color.key: Attribute.color, + Attribute.background.key: Attribute.background, Attribute.header.key: Attribute.header, Attribute.list.key: Attribute.list, Attribute.codeBlock.key: Attribute.codeBlock, @@ -35,6 +37,10 @@ class Attribute { static final LinkAttribute link = LinkAttribute(null); + static final ColorAttribute color = ColorAttribute(null); + + static final BackgroundAttribute background = BackgroundAttribute(null); + static final HeaderAttribute header = HeaderAttribute(); static final ListAttribute list = ListAttribute(null); @@ -91,7 +97,7 @@ class Attribute { Attribute attribute = clone(origin, value); return attribute; } - + static Attribute clone(Attribute origin, dynamic value) { return Attribute(origin.key, origin.scope, value); } @@ -135,6 +141,15 @@ class LinkAttribute extends Attribute { LinkAttribute(String val) : super('link', AttributeScope.INLINE, val); } +class ColorAttribute extends Attribute { + ColorAttribute(String val) : super('color', AttributeScope.INLINE, val); +} + +class BackgroundAttribute extends Attribute { + BackgroundAttribute(String val) + : super('background', AttributeScope.INLINE, val); +} + class HeaderAttribute extends Attribute { HeaderAttribute({int level}) : super('header', AttributeScope.BLOCK, level); } diff --git a/lib/widgets/text_line.dart b/lib/widgets/text_line.dart index 6971daf3..931ead5c 100644 --- a/lib/widgets/text_line.dart +++ b/lib/widgets/text_line.dart @@ -91,6 +91,13 @@ class TextLine extends StatelessWidget { return TextSpan(children: children, style: textStyle); } + Color _hexStringToColor(String hex) { + hex = hex.replaceFirst('#', ''); + hex = hex.length == 6 ? 'ff' + hex : hex; + int val = int.parse(hex, radix: 16); + return Color(val); + } + TextSpan _getTextSpanFromNode(DefaultStyles defaultStyles, Node node) { leaf.Text textNode = node as leaf.Text; Style style = textNode.style; @@ -109,6 +116,12 @@ class TextLine extends StatelessWidget { } }); + Attribute color = textNode.style.attributes[Attribute.color.key]; + if (color != null && color.value != null) { + final textColor = _hexStringToColor(color.value); + res = res.merge(new TextStyle(color: textColor)); + } + return TextSpan(text: textNode.value, style: res); }