|
|
@ -75,7 +75,7 @@ class EditableTextBlock extends StatelessWidget { |
|
|
|
int index = 0; |
|
|
|
int index = 0; |
|
|
|
for (Line line in block.children) { |
|
|
|
for (Line line in block.children) { |
|
|
|
index++; |
|
|
|
index++; |
|
|
|
children.add(EditableTextLine( |
|
|
|
EditableTextLine editableTextLine = EditableTextLine( |
|
|
|
line, |
|
|
|
line, |
|
|
|
_buildLeading(context, line, index, count), |
|
|
|
_buildLeading(context, line, index, count), |
|
|
|
TextLine( |
|
|
|
TextLine( |
|
|
@ -91,7 +91,8 @@ class EditableTextBlock extends StatelessWidget { |
|
|
|
enableInteractiveSelection, |
|
|
|
enableInteractiveSelection, |
|
|
|
hasFocus, |
|
|
|
hasFocus, |
|
|
|
MediaQuery.of(context).devicePixelRatio, |
|
|
|
MediaQuery.of(context).devicePixelRatio, |
|
|
|
cursorCont)); |
|
|
|
cursorCont); |
|
|
|
|
|
|
|
children.add(editableTextLine); |
|
|
|
} |
|
|
|
} |
|
|
|
return children.toList(growable: false); |
|
|
|
return children.toList(growable: false); |
|
|
|
} |
|
|
|
} |
|
|
|