Skip to content
Snippets Groups Projects
Commit 8494ee33 authored by vjrj's avatar vjrj
Browse files

Remove bouncing in 2nd screen

parent 244aaf2d
No related branches found
No related tags found
No related merge requests found
...@@ -9,9 +9,7 @@ class SecondScreen extends StatelessWidget { ...@@ -9,9 +9,7 @@ class SecondScreen extends StatelessWidget {
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Material( return Material(
color: Theme.of(context).colorScheme.background, color: Theme.of(context).colorScheme.background,
child: ListView( child: Column(
padding: const EdgeInsets.symmetric(horizontal: 16),
physics: const BouncingScrollPhysics(),
children: const <Widget>[SizedBox(height: 36), CardTerminal()]), children: const <Widget>[SizedBox(height: 36), CardTerminal()]),
); );
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment