diff --git a/Frontend/lib/mih_components/mih_layout/mih_single_child_scroll.dart b/Frontend/lib/mih_components/mih_layout/mih_single_child_scroll.dart index 76f964e7..f8f6e096 100644 --- a/Frontend/lib/mih_components/mih_layout/mih_single_child_scroll.dart +++ b/Frontend/lib/mih_components/mih_layout/mih_single_child_scroll.dart @@ -15,6 +15,8 @@ class _MihSingleChildScrollState extends State { @override Widget build(BuildContext context) { return SafeArea( + bottom: false, + minimum: EdgeInsets.only(bottom: 5), child: ScrollConfiguration( behavior: ScrollConfiguration.of(context).copyWith(scrollbars: false), child: SingleChildScrollView( diff --git a/Frontend/lib/mih_components/mih_package_components/mih_app.dart b/Frontend/lib/mih_components/mih_package_components/mih_app.dart index 4020ac6c..96c9ece3 100644 --- a/Frontend/lib/mih_components/mih_package_components/mih_app.dart +++ b/Frontend/lib/mih_components/mih_package_components/mih_app.dart @@ -99,6 +99,8 @@ class _MihAppState extends State with SingleTickerProviderStateMixin { child: Scaffold( drawer: widget.actionDrawer, body: SafeArea( + bottom: false, + minimum: EdgeInsets.only(bottom: 5), child: Container( width: screenSize.width, height: screenSize.height, @@ -114,6 +116,7 @@ class _MihAppState extends State with SingleTickerProviderStateMixin { Flexible(child: widget.appTools), ], ), + const SizedBox(height: 5), Expanded( child: PageView.builder( controller: _pageController,