From 8494ee331dc9a50ee2b6e4f32532eff0e55b16fc Mon Sep 17 00:00:00 2001
From: vjrj <vjrj@comunes.org>
Date: Sun, 5 Mar 2023 21:25:23 +0100
Subject: [PATCH] Remove bouncing in 2nd screen

---
 lib/ui/screens/second_screen.dart | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/lib/ui/screens/second_screen.dart b/lib/ui/screens/second_screen.dart
index 65b2971e..dbcd4248 100644
--- a/lib/ui/screens/second_screen.dart
+++ b/lib/ui/screens/second_screen.dart
@@ -9,9 +9,7 @@ class SecondScreen extends StatelessWidget {
   Widget build(BuildContext context) {
     return Material(
       color: Theme.of(context).colorScheme.background,
-      child: ListView(
-          padding: const EdgeInsets.symmetric(horizontal: 16),
-          physics: const BouncingScrollPhysics(),
+      child: Column(
           children: const <Widget>[SizedBox(height: 36), CardTerminal()]),
     );
   }
-- 
GitLab