We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18f4d35 commit ac1226fCopy full SHA for ac1226f
flutter_quill_extensions/lib/embeds/image/editor/image_embed.dart
@@ -64,13 +64,15 @@ class QuillEditorImageEmbedBuilder extends EmbedBuilder {
64
}
65
showDialog(
66
context: context,
67
- builder: (_) => ImageOptionsMenu(
68
- controller: controller,
69
- configurations: configurations,
70
- imageSource: imageSource,
71
- imageSize: imageSize,
72
- isReadOnly: readOnly,
73
- imageSaverService: imageSaverService,
+ builder: (_) => FlutterQuillLocalizationsWidget(
+ child: ImageOptionsMenu(
+ controller: controller,
+ configurations: configurations,
+ imageSource: imageSource,
+ imageSize: imageSize,
+ isReadOnly: readOnly,
74
+ imageSaverService: imageSaverService,
75
+ ),
76
),
77
);
78
},
0 commit comments