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 cupertino_icons: ^1.0.6
path_provider: ^2.1.1 path_provider: ^2.1.1
filesystem_picker: ^4.0.0 filesystem_picker: ^4.0.0
file_picker: ^6.0.0 file_picker: ^6.1.1
flutter_quill: flutter_quill: ^8.1.10
path: ../ flutter_quill_extensions: ^0.5.0
flutter_quill_extensions:
path: ../flutter_quill_extensions
dependency_overrides: dependency_overrides:
flutter_quill: flutter_quill:
path: ../ path: ../
flutter_quill_extensions:
path: ../flutter_quill_extensions
dev_dependencies: dev_dependencies:
flutter_test: flutter_test:

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

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

Loading…
Cancel
Save