From a934f4ddac28b17864c5aaeaeb949663980717d0 Mon Sep 17 00:00:00 2001 From: Ellet <73608287+freshtechtips@users.noreply.github.com> Date: Sun, 5 Nov 2023 02:29:27 +0300 Subject: [PATCH] Fix the example --- example/pubspec.yaml | 10 +++++----- .../lib/presentation/embeds/editor/image/image.dart | 12 ++++++------ lib/src/models/structs/optional_size.dart | 5 ++++- 3 files changed, 15 insertions(+), 12 deletions(-) diff --git a/example/pubspec.yaml b/example/pubspec.yaml index 4053c2c7..4c74eae5 100644 --- a/example/pubspec.yaml +++ b/example/pubspec.yaml @@ -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: diff --git a/flutter_quill_extensions/lib/presentation/embeds/editor/image/image.dart b/flutter_quill_extensions/lib/presentation/embeds/editor/image/image.dart index 9fb3fbc2..c5170fa2 100644 --- a/flutter_quill_extensions/lib/presentation/embeds/editor/image/image.dart +++ b/flutter_quill_extensions/lib/presentation/embeds/editor/image/image.dart @@ -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), diff --git a/lib/src/models/structs/optional_size.dart b/lib/src/models/structs/optional_size.dart index a887b468..49d274c8 100644 --- a/lib/src/models/structs/optional_size.dart +++ b/lib/src/models/structs/optional_size.dart @@ -1,5 +1,8 @@ +import 'package:meta/meta.dart' show immutable; + +@immutable class OptionalSize { - OptionalSize( + const OptionalSize( this.width, this.height, );