Merge pull request #161 from yaso-meth/BUG--Botton-chin-iOS
remove chin
This commit is contained in:
@@ -15,6 +15,8 @@ class _MihSingleChildScrollState extends State<MihSingleChildScroll> {
|
|||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return SafeArea(
|
return SafeArea(
|
||||||
|
bottom: false,
|
||||||
|
minimum: EdgeInsets.only(bottom: 5),
|
||||||
child: ScrollConfiguration(
|
child: ScrollConfiguration(
|
||||||
behavior: ScrollConfiguration.of(context).copyWith(scrollbars: false),
|
behavior: ScrollConfiguration.of(context).copyWith(scrollbars: false),
|
||||||
child: SingleChildScrollView(
|
child: SingleChildScrollView(
|
||||||
|
|||||||
@@ -99,6 +99,8 @@ class _MihAppState extends State<MihApp> with SingleTickerProviderStateMixin {
|
|||||||
child: Scaffold(
|
child: Scaffold(
|
||||||
drawer: widget.actionDrawer,
|
drawer: widget.actionDrawer,
|
||||||
body: SafeArea(
|
body: SafeArea(
|
||||||
|
bottom: false,
|
||||||
|
minimum: EdgeInsets.only(bottom: 5),
|
||||||
child: Container(
|
child: Container(
|
||||||
width: screenSize.width,
|
width: screenSize.width,
|
||||||
height: screenSize.height,
|
height: screenSize.height,
|
||||||
@@ -114,6 +116,7 @@ class _MihAppState extends State<MihApp> with SingleTickerProviderStateMixin {
|
|||||||
Flexible(child: widget.appTools),
|
Flexible(child: widget.appTools),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
const SizedBox(height: 5),
|
||||||
Expanded(
|
Expanded(
|
||||||
child: PageView.builder(
|
child: PageView.builder(
|
||||||
controller: _pageController,
|
controller: _pageController,
|
||||||
|
|||||||
Reference in New Issue
Block a user