Fix the example

pull/1506/head
Ellet 1 year ago
parent bffae92b50
commit a934f4ddac
No known key found for this signature in database
GPG Key ID: C488CC70BBCEF0D1
  1. 10
      example/pubspec.yaml
  2. 12
      flutter_quill_extensions/lib/presentation/embeds/editor/image/image.dart
  3. 5
      lib/src/models/structs/optional_size.dart

@ -14,15 +14,15 @@ dependencies:
cupertino_icons: ^1.0.6
path_provider: ^2.1.1
filesystem_picker: ^4.0.0
file_picker: ^6.0.0
flutter_quill:
path: ../
flutter_quill_extensions:
path: ../flutter_quill_extensions
file_picker: ^6.1.1
flutter_quill: ^8.1.10
flutter_quill_extensions: ^0.5.0
dependency_overrides:
flutter_quill:
path: ../
flutter_quill_extensions:
path: ../flutter_quill_extensions
dev_dependencies:
flutter_test:

@ -77,12 +77,12 @@ class QuillEditorImageEmbedBuilder extends EmbedBuilder {
: double.tryParse(Attribute.margin)) ??
0.0;
assert(
width != null && height != null,
base.isMobile()
? 'mobileWidth and mobileHeight must be specified'
: 'width and height must be specified',
);
// assert(
// width != null && height != null,
// base.isMobile()
// ? 'mobileWidth and mobileHeight must be specified'
// : 'width and height must be specified',
// );
imageSize = OptionalSize(width, height);
image = Padding(
padding: EdgeInsets.all(margin),

@ -1,5 +1,8 @@
import 'package:meta/meta.dart' show immutable;
@immutable
class OptionalSize {
OptionalSize(
const OptionalSize(
this.width,
this.height,
);

Loading…
Cancel
Save