diff --git a/lib/features/composer/presentation/composer_view_web.dart b/lib/features/composer/presentation/composer_view_web.dart index 94ca6986e..b3d8990a3 100644 --- a/lib/features/composer/presentation/composer_view_web.dart +++ b/lib/features/composer/presentation/composer_view_web.dart @@ -781,6 +781,7 @@ class ComposerView extends GetWidget key: const Key('composer_editor_web'), controller: controller.richTextWebController.editorController, htmlEditorOptions: const HtmlEditorOptions( + shouldEnsureVisible: true, hint: '', darkMode: false, customBodyCssStyle: bodyCssStyleForEditor), @@ -791,6 +792,7 @@ class ComposerView extends GetWidget otherOptions: const OtherOptions(height: 550), callbacks: Callbacks(onBeforeCommand: (currentHtml) { log('ComposerView::_buildHtmlEditor(): onBeforeCommand : $currentHtml'); + controller.richTextWebController.setFullScreenEditor(); controller.setTextEditorWeb(currentHtml); }, onChangeContent: (changed) { log('ComposerView::_buildHtmlEditor(): onChangeContent : $changed');