Reformat code

pull/13/head
singerdmx 4 years ago
parent 4d37c84246
commit e46f4e3a3b
  1. 4
      lib/models/documents/nodes/leaf.dart
  2. 3
      lib/widgets/cursor.dart
  3. 3
      lib/widgets/default_styles.dart
  4. 2
      lib/widgets/image.dart

@ -30,7 +30,8 @@ abstract class Leaf extends Node {
@override
void applyStyle(Style value) {
assert(value != null && (value.isInline || value.isIgnored || value.isEmpty),
assert(
value != null && (value.isInline || value.isIgnored || value.isEmpty),
'Unable to apply Style to leaf: $value');
super.applyStyle(value);
}
@ -203,5 +204,4 @@ class Embed extends Leaf {
Node newInstance() {
throw UnimplementedError();
}
}

@ -70,8 +70,7 @@ class CursorCont extends ChangeNotifier {
@required ValueNotifier<bool> show,
@required CursorStyle style,
@required TickerProvider tickerProvider,
})
: assert(show != null),
}) : assert(show != null),
assert(style != null),
assert(tickerProvider != null),
show = show ?? ValueNotifier<bool>(false),

@ -161,7 +161,8 @@ class DefaultStyles {
borderRadius: BorderRadius.circular(2),
)),
DefaultTextBlockStyle(baseStyle, baseSpacing, Tuple2(0.0, 6.0), null),
DefaultTextBlockStyle(baseStyle, Tuple2(0.0, 0.0), Tuple2(0.0, 0.0), null));
DefaultTextBlockStyle(
baseStyle, Tuple2(0.0, 0.0), Tuple2(0.0, 0.0), null));
}
DefaultStyles merge(DefaultStyles other) {

@ -28,4 +28,4 @@ class ImageTapWrapper extends StatelessWidget {
),
);
}
}
}

Loading…
Cancel
Save