File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ class CursorCont extends ChangeNotifier {
101
101
required this .show,
102
102
required CursorStyle style,
103
103
required TickerProvider tickerProvider,
104
- }) : _style = style,
104
+ }) : _style = style,
105
105
blink = ValueNotifier (false ),
106
106
color = ValueNotifier (style.color) {
107
107
_blinkOpacityController =
Original file line number Diff line number Diff line change @@ -628,7 +628,8 @@ class RenderEditableTextLine extends RenderEditableBox {
628
628
: _leading! .getMinIntrinsicWidth (height - verticalPadding).ceil ();
629
629
final bodyWidth = _body == null
630
630
? 0
631
- : _body! .getMinIntrinsicWidth (math.max (0 , height - verticalPadding))
631
+ : _body!
632
+ .getMinIntrinsicWidth (math.max (0 , height - verticalPadding))
632
633
.ceil ();
633
634
return horizontalPadding + leadingWidth + bodyWidth;
634
635
}
@@ -643,7 +644,8 @@ class RenderEditableTextLine extends RenderEditableBox {
643
644
: _leading! .getMaxIntrinsicWidth (height - verticalPadding).ceil ();
644
645
final bodyWidth = _body == null
645
646
? 0
646
- : _body! .getMaxIntrinsicWidth (math.max (0 , height - verticalPadding))
647
+ : _body!
648
+ .getMaxIntrinsicWidth (math.max (0 , height - verticalPadding))
647
649
.ceil ();
648
650
return horizontalPadding + leadingWidth + bodyWidth;
649
651
}
You can’t perform that action at this time.
0 commit comments