Fix overlay title composer on tablet/ipad device
This commit is contained in:
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user