@@ -58,14 +58,14 @@ class Page extends StatelessWidget {
5858 ),
5959 ),
6060 Expanded (
61- flex: 4 ,
61+ flex: 3 ,
6262 child: _ImagePageTransform (
6363 percentVisible: percentVisible,
6464 pageViewModel: pageViewModel,
6565 ),
6666 ),
6767 Flexible (
68- flex: 2 ,
68+ flex: 3 ,
6969 child: _BodyPageTransform (
7070 percentVisible: percentVisible,
7171 pageViewModel: pageViewModel,
@@ -92,8 +92,7 @@ class Page extends StatelessWidget {
9292 mainAxisAlignment: columnMainAxisAlignment,
9393 mainAxisSize: MainAxisSize .max,
9494 children: < Widget > [
95- Expanded (
96- flex: 2 ,
95+ Flexible (
9796 child: SafeArea (
9897 child: _TitlePageTransform (
9998 percentVisible: percentVisible,
@@ -102,10 +101,11 @@ class Page extends StatelessWidget {
102101 ),
103102 ),
104103 Expanded (
105- flex: 4 ,
106- child: _BodyPageTransform (
107- percentVisible: percentVisible,
108- pageViewModel: pageViewModel,
104+ child: SafeArea (
105+ child: _BodyPageTransform (
106+ percentVisible: percentVisible,
107+ pageViewModel: pageViewModel,
108+ ),
109109 ),
110110 ),
111111 ],
@@ -136,7 +136,7 @@ class _BodyPageTransform extends StatelessWidget {
136136 Matrix4 .translationValues (0.0 , 30.0 * (1 - percentVisible), 0.0 ),
137137 child: Padding (
138138 padding: EdgeInsets .only (
139- bottom: 100 .0 + MediaQuery .of (context).padding.bottom,
139+ bottom: 75 .0 + MediaQuery .of (context).padding.bottom,
140140 left: 10.0 ,
141141 right: 10.0 ,
142142 ),
0 commit comments