Skip to content

Commit

Permalink
fix: change SingleChildScrollView for a LIstView to enable maximum sc…
Browse files Browse the repository at this point in the history
…roll boundary
  • Loading branch information
ssaakaash committed Feb 17, 2025
1 parent acf01bf commit 7b35164
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions lib/view/screens/home_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down Expand Up @@ -158,7 +156,7 @@ class HomeScreen extends ConsumerWidget {
],
),
),
),

IgnorePointer(
ignoring: true,
child: SizedBox(
Expand Down

0 comments on commit 7b35164

Please sign in to comment.