Closed JWAutumn closed 3 months ago
here is the code:
return Column( children: [ QuillToolbar.simple( configurations: QuillSimpleToolbarConfigurations( controller: controller.quillController, embedButtons: FlutterQuillEmbeds.toolbarButtons(videoButtonOptions: null), sharedConfigurations: const QuillSharedConfigurations(locale: Locale('zh')), toolbarIconAlignment: WrapAlignment.start, sectionDividerSpace: 0, showSearchButton: false, showFontFamily: false, showInlineCode: false, showCodeBlock: false, showAlignmentButtons: true, showJustifyAlignment: false, showSuperscript: false, showSubscript: false, ), ), QuillEditor.basic( configurations: QuillEditorConfigurations( controller: controller.quillController, sharedConfigurations: const QuillSharedConfigurations(locale: Locale('zh')), embedBuilders: FlutterQuillEmbeds.editorBuilders(), padding: const EdgeInsets.all(10), maxHeight: 500.w, minHeight: 300.w, ), ), ], ); }
QuillToolbar's Localizations is working
but select image dialog, not working, screenshot here Is there something wrong with my configuration?
Is there an existing issue for this?
The question
here is the code:
QuillToolbar's Localizations is working
but select image dialog, not working, screenshot here Is there something wrong with my configuration?