|
|
@ -53,6 +53,7 @@ class EditableTextBlock extends StatelessWidget { |
|
|
|
final Tuple2 verticalSpacing; |
|
|
|
final Tuple2 verticalSpacing; |
|
|
|
final TextSelection textSelection; |
|
|
|
final TextSelection textSelection; |
|
|
|
final Color color; |
|
|
|
final Color color; |
|
|
|
|
|
|
|
final DefaultStyles styles; |
|
|
|
final bool enableInteractiveSelection; |
|
|
|
final bool enableInteractiveSelection; |
|
|
|
final bool hasFocus; |
|
|
|
final bool hasFocus; |
|
|
|
final EdgeInsets contentPadding; |
|
|
|
final EdgeInsets contentPadding; |
|
|
@ -66,6 +67,7 @@ class EditableTextBlock extends StatelessWidget { |
|
|
|
this.verticalSpacing, |
|
|
|
this.verticalSpacing, |
|
|
|
this.textSelection, |
|
|
|
this.textSelection, |
|
|
|
this.color, |
|
|
|
this.color, |
|
|
|
|
|
|
|
this.styles, |
|
|
|
this.enableInteractiveSelection, |
|
|
|
this.enableInteractiveSelection, |
|
|
|
this.hasFocus, |
|
|
|
this.hasFocus, |
|
|
|
this.contentPadding, |
|
|
|
this.contentPadding, |
|
|
@ -117,6 +119,7 @@ class EditableTextBlock extends StatelessWidget { |
|
|
|
line: line, |
|
|
|
line: line, |
|
|
|
textDirection: textDirection, |
|
|
|
textDirection: textDirection, |
|
|
|
embedBuilder: embedBuilder, |
|
|
|
embedBuilder: embedBuilder, |
|
|
|
|
|
|
|
styles: styles, |
|
|
|
), |
|
|
|
), |
|
|
|
_getIndentWidth(), |
|
|
|
_getIndentWidth(), |
|
|
|
_getSpacingForLine(line, index, count, defaultStyles), |
|
|
|
_getSpacingForLine(line, index, count, defaultStyles), |
|
|
|