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* {