remove chin

This commit is contained in:
2025-05-07 14:45:24 +02:00
parent 4723db4849
commit 81100e05b2
2 changed files with 5 additions and 0 deletions

View File

@@ -15,6 +15,8 @@ class _MihSingleChildScrollState extends State<MihSingleChildScroll> {
@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(

View File

@@ -99,6 +99,8 @@ class _MihAppState extends State<MihApp> 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<MihApp> with SingleTickerProviderStateMixin {
Flexible(child: widget.appTools),
],
),
const SizedBox(height: 5),
Expanded(
child: PageView.builder(
controller: _pageController,