-
Notifications
You must be signed in to change notification settings - Fork 349
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, I want the framed place to be at the bottom by default, and follow the keyboard to pop up. What do I need to do? #118
Comments
You need to change the height of your editor box using MediaQuery to make it full size. |
Can you please give me the code for how to set it up? Thank you very much. I searched the document for a long time, but I didn’t find it. It may be that I don’t understand the document deeply. |
htmlEditorOptions: HtmlEditorOptions(
height: MediaQuery.of(context).size.height - (MediaQuery.of(context).padding.top + kToolbarHeight)
...
) should work for you |
Hello, is the parameter given wrong but this OtherOptions parameter, I reported an error with the parameter you gave by the authorThe named parameter "height" is not defined. Try to correct the name to the name of an existing named parameter, or use the name "height" to define a named parameter. Open document |
|
Sorry, I still don’t understand how to delete the drag bar. Can you explain it in detail? |
HtmlEditor(
controller: controller,
callbacks: Callbacks(
onInit: () {
controller.setFullscreen();
}
)
) Like this :) |
Thank you |
The text was updated successfully, but these errors were encountered: