From 3af44ea19d4d24b9b4cb133062bcfce99e4aaae8 Mon Sep 17 00:00:00 2001 From: Dain Nilsson Date: Wed, 9 Feb 2022 12:32:34 +0100 Subject: [PATCH] Make drawer scrollview non-primary. This prevents an exception when both the main view and drawer is visible, if both views are scrollable. It does not seem to impact behavior at all. --- lib/app/views/main_drawer.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/app/views/main_drawer.dart b/lib/app/views/main_drawer.dart index 557a2e1f..bdcd06c2 100755 --- a/lib/app/views/main_drawer.dart +++ b/lib/app/views/main_drawer.dart @@ -25,6 +25,7 @@ class MainPageDrawer extends ConsumerWidget { return Drawer( child: ListView( + primary: false, //Prevents conflict with the MainPage scroll view. children: [ Padding( padding: const EdgeInsets.all(12.0),