From b40b0f63f24ae224ba126e3907cb9ab64368c9ac Mon Sep 17 00:00:00 2001 From: singerdmx Date: Sun, 20 Dec 2020 18:55:51 -0800 Subject: [PATCH] Fix missing color --- lib/widgets/text_line.dart | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/widgets/text_line.dart b/lib/widgets/text_line.dart index f50b732a..2170c73b 100644 --- a/lib/widgets/text_line.dart +++ b/lib/widgets/text_line.dart @@ -173,6 +173,7 @@ class EditableTextLine extends RenderObjectWidget { hasFocus, devicePixelRatio, _getPadding(), + this.color, cursorCont); } @@ -226,12 +227,14 @@ class RenderEditableTextLine extends RenderEditableBox { this.hasFocus, this.devicePixelRatio, this.padding, + this.color, this.cursorCont) : assert(line != null), assert(padding != null), assert(padding.isNonNegative), assert(devicePixelRatio != null), assert(hasFocus != null), + assert(color != null), assert(cursorCont != null); Iterable get _children sync* {