File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ class _HomePageState extends State<HomePage> {
130
130
child: SafeArea (
131
131
child: model.isMobileResolution
132
132
? Scaffold (
133
- resizeToAvoidBottomPadding : true ,
133
+ resizeToAvoidBottomInset : false ,
134
134
drawer: (! model.isWeb && Platform .isIOS)
135
135
? null //Avoiding drawer in iOS platform
136
136
: getLeftSideDrawer (model),
@@ -172,7 +172,7 @@ class _HomePageState extends State<HomePage> {
172
172
key: scaffoldKey,
173
173
backgroundColor: model.webBackgroundColor,
174
174
endDrawer: showWebThemeSettings (model),
175
- resizeToAvoidBottomPadding : true ,
175
+ resizeToAvoidBottomInset : false ,
176
176
appBar: PreferredSize (
177
177
preferredSize: const Size .fromHeight (90.0 ),
178
178
child: AppBar (
Original file line number Diff line number Diff line change @@ -110,7 +110,6 @@ class _CalendarAppointmentEditorState extends SampleViewState {
110
110
final double _screenHeight = MediaQuery .of (context).size.height;
111
111
return Scaffold (
112
112
resizeToAvoidBottomInset: false ,
113
- resizeToAvoidBottomPadding: false ,
114
113
body: calendarController.view == CalendarView .month &&
115
114
model.isWeb &&
116
115
_screenHeight < 800
Original file line number Diff line number Diff line change @@ -262,7 +262,7 @@ class BackdropState extends State<Backdrop>
262
262
return Theme (
263
263
data: sampleListModel.themeData,
264
264
child: Scaffold (
265
- resizeToAvoidBottomPadding : false ,
265
+ resizeToAvoidBottomInset : false ,
266
266
key: _scaffoldKey,
267
267
backgroundColor: sampleListModel.paletteColor,
268
268
appBar: PreferredSize (
You can’t perform that action at this time.
0 commit comments