You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is the code I have added controller.setFullScreen(); in on Init call back bu the issue is when it loads the html editor that dragbar flickers for one then it disappears.
I am using html editor and I want to remove the dragbar I have tried as mentioned in #42
SingleChildScrollView(
child: Column(children: [
HtmlEditor(
controller: controller,
callbacks: Callbacks(onInit: () {
controller.setFullScreen();
}),
htmlEditorOptions: HtmlEditorOptions(
autoAdjustHeight: false,
mobileContextMenu: ContextMenu(),
mobileLongPressDuration: const Duration(microseconds: 200),
hint: hint,
initialText: labelText ?? "",
shouldEnsureVisible: true,
),
htmlToolbarOptions: const HtmlToolbarOptions(
toolbarPosition: ToolbarPosition.aboveEditor,
toolbarType: ToolbarType.nativeScrollable,
defaultToolbarButtons: [
StyleButtons(),
ListButtons(listStyles: false),
FontButtons(superscript: false, subscript: false),
ParagraphButtons(
lineHeight: false,
caseConverter: false,
textDirection: false),
InsertButtons(
link: true,
picture: false,
audio: false,
video: false,
otherFile: false,
table: false,
hr: false),
],
),
otherOptions: OtherOptions(
height: MediaQuery.of(context).size.height - 120,
),
)
]),
),
Android.Emulator.-.Pixel_3a_API_33_2_5554.2023-11-28.10-51-11.mp4
The text was updated successfully, but these errors were encountered: