Tanay Neotia

Results 249 comments of Tanay Neotia

Maybe try using `onInit` callback and `controller.evaluateJavascript` with this code: `$('#summernote').summernote('fontSize',14);`

At this time there is no good API for that, maybe you can make a custom dropdown with the default styles and tweak the code slightly to use the font...

Did you try the keyboard type API in the editor? What is your editor code?

Use `mediaUploadInterceptor` to do this. You can intercept uploaded images, do what you need, then reinsert the image into the editor.

This is most likely a bug with Flutter. The arrow keys should function as normal in the webview

do not use `insertHtml` function, use `setText`. I think it should not have the space then

Controller unfocus should work with `controller.clearFocus()`... on my end it removes the cursor, removes the keyboard, and resets the height. However, if you are trying to create an implementation where...

> The onscreen keyboard pops up on and off couple of times (in other words, editor focus is not stable). @anamak9 would you be able to provide device details and...

@anamak9 finally got a chance to test on an emulator. I can't reproduce your 2nd and 3rd issues at all on the `master` branch of the plugin, Flutter beta, and...

> Is it possible to define the keyboard type ? Added in v2.2.0, thanks for the suggestion! (Use `HtmlEditorOptions` > `inputType` to use this feature).