From 81100e05b2ce0f38cbef3c15e585c64f78186a98 Mon Sep 17 00:00:00 2001 From: Yasien Mac Mini Date: Wed, 7 May 2025 14:45:24 +0200 Subject: [PATCH] remove chin --- .../lib/mih_components/mih_layout/mih_single_child_scroll.dart | 2 ++ .../lib/mih_components/mih_package_components/mih_app.dart | 3 +++ 2 files changed, 5 insertions(+) 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,