Fix overlay title composer on tablet/ipad device

This commit is contained in:
dab246
2025-09-17 10:51:15 +07:00
committed by Dat H. Pham
parent a499d5d50f
commit 2abd5e6a8e
4 changed files with 12 additions and 12 deletions
@@ -32,7 +32,7 @@ class MobileContainerView extends StatelessWidget {
child: Scaffold(
backgroundColor: backgroundColor ?? MobileContainerViewStyle.outSideBackgroundColor,
resizeToAvoidBottomInset: false,
body: LayoutBuilder(builder: (context, constraints) {
body: LayoutBuilder(builder: (_, constraints) {
return childBuilder(context, constraints);
})
),
@@ -47,7 +47,7 @@ class TabletContainerView extends StatelessWidget {
child: Scaffold(
backgroundColor: TabletContainerViewStyle.outSideBackgroundColor,
body: SafeArea(
child: LayoutBuilder(builder: (context, constraints) {
child: LayoutBuilder(builder: (_, constraints) {
return KeyboardRichText(
richTextController: keyboardRichTextController,
keyBroadToolbar: RichTextKeyboardToolBar(