From 7b3516483493e9c26b20f97450bd317deee31a55 Mon Sep 17 00:00:00 2001 From: ssaakaash Date: Tue, 18 Feb 2025 00:38:27 +0530 Subject: [PATCH] fix: change SingleChildScrollView for a LIstView to enable maximum scroll boundary --- lib/view/screens/home_screen.dart | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/lib/view/screens/home_screen.dart b/lib/view/screens/home_screen.dart index eed4e89..ca89b55 100644 --- a/lib/view/screens/home_screen.dart +++ b/lib/view/screens/home_screen.dart @@ -29,11 +29,9 @@ class HomeScreen extends ConsumerWidget { children: [ Padding( padding: const EdgeInsets.all(32.0), - child: SingleChildScrollView( + child: ListView( physics: const AlwaysScrollableScrollPhysics(), - child: Column( - crossAxisAlignment: CrossAxisAlignment.start, - children: [ + children: [ const Text( "Create new Playlist ยท", style: TextStyle( @@ -158,7 +156,7 @@ class HomeScreen extends ConsumerWidget { ], ), ), - ), + IgnorePointer( ignoring: true, child: SizedBox(