the-airbender / quill_html_editor

HTML rich text editor for Android, iOS, and Web, using the QuillJS library. QuillJS is a free, open source WYSIWYG editor built for the modern web.
https://pub.dev/packages/quill_html_editor
MIT License
87 stars 86 forks source link

autoFocus Not working [BUG] #144

Open volkanustekidag opened 10 months ago

volkanustekidag commented 10 months ago

Autofocus not working


QuillHtmlEditor(
                padding: const EdgeInsets.all(8),
                loadingBuilder: (context) => Container(
                  height: 250,
                  color: context.theme.scaffoldBackgroundColor,
                ),
                hintText: "",
                textStyle: context.theme.textTheme.titleLarge!.copyWith(
                  fontSize: 16,
                  fontFamily: Fonts.poppinsRegular,
                  height: 1.3,
                ),
                backgroundColor: context.theme.scaffoldBackgroundColor,
                controller: controller,
                onTextChanged: (p0) {
                  tempContent = p0;
                },
                autoFocus: true,
                minHeight: 250,
                text: content,
              ),
the-airbender commented 8 months ago

Hello @volkanustekidag ,

If you are referring to keyboard not popping up with auto focus, that is a limitation with the webview_flutter plugin. Hopefully it will be resolved soon. Please help me with some more information to understand this better.

Thanks!