Veggieseasons - Fix feed scroll behind status bar (#337)

pull/348/head
Manasvi Patidar 6 years ago committed by GitHub
parent c6f6b5b757
commit 738b0d9958
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -39,6 +39,8 @@ class ListScreen extends StatelessWidget {
return DecoratedBox( return DecoratedBox(
decoration: BoxDecoration(color: Color(0xffffffff)), decoration: BoxDecoration(color: Color(0xffffffff)),
child: SafeArea(
bottom: false,
child: ListView.builder( child: ListView.builder(
itemCount: appState.allVeggies.length + 2, itemCount: appState.allVeggies.length + 2,
itemBuilder: (context, index) { itemBuilder: (context, index) {
@ -72,6 +74,7 @@ class ListScreen extends StatelessWidget {
} }
}, },
), ),
),
); );
}, },
); );

Loading…
Cancel
Save