Skip to content

Commit

Permalink
remove auto format
Browse files Browse the repository at this point in the history
  • Loading branch information
satotoshitaka11 committed Jan 14, 2025
1 parent d9c6a7b commit 4eb8652
Showing 1 changed file with 33 additions and 33 deletions.
66 changes: 33 additions & 33 deletions lib/src/editor/widgets/text/text_block.dart
Original file line number Diff line number Diff line change
Expand Up @@ -174,39 +174,39 @@ class EditableTextBlock extends StatelessWidget {
for (final line in Iterable.castFrom<dynamic, Line>(block.children)) {
index++;
final editableTextLine = EditableTextLine(
line,
_buildLeading(
context: context,
line: line,
index: index,
indentLevelCounts: indentLevelCounts,
count: count,
),
TextLine(
line: line,
textDirection: textDirection,
embedBuilder: embedBuilder,
customStyleBuilder: customStyleBuilder,
styles: styles!,
readOnly: readOnly,
controller: controller,
linkActionPicker: linkActionPicker,
onLaunchUrl: onLaunchUrl,
customLinkPrefixes: customLinkPrefixes,
customRecognizerBuilder: customRecognizerBuilder,
composingRange: composingRange,
),
indentWidthBuilder(block, context, count, numberPointWidthBuilder),
_getSpacingForLine(line, index, count, defaultStyles),
textDirection,
textSelection,
color,
enableInteractiveSelection,
hasFocus,
MediaQuery.devicePixelRatioOf(context),
cursorCont,
styles!.inlineCode!,
null);
line,
_buildLeading(
context: context,
line: line,
index: index,
indentLevelCounts: indentLevelCounts,
count: count,
),
TextLine(
line: line,
textDirection: textDirection,
embedBuilder: embedBuilder,
customStyleBuilder: customStyleBuilder,
styles: styles!,
readOnly: readOnly,
controller: controller,
linkActionPicker: linkActionPicker,
onLaunchUrl: onLaunchUrl,
customLinkPrefixes: customLinkPrefixes,
customRecognizerBuilder: customRecognizerBuilder,
composingRange: composingRange,
),
indentWidthBuilder(block, context, count, numberPointWidthBuilder),
_getSpacingForLine(line, index, count, defaultStyles),
textDirection,
textSelection,
color,
enableInteractiveSelection,
hasFocus,
MediaQuery.devicePixelRatioOf(context),
cursorCont,
styles!.inlineCode!,
null);
final nodeTextDirection = getDirectionOfNode(line, textDirection);
children.add(
Directionality(
Expand Down

0 comments on commit 4eb8652

Please sign in to comment.