From 9252b0eef705ef45191b5f5329c616dbb365b49d Mon Sep 17 00:00:00 2001 From: minie4 Date: Sun, 25 Feb 2024 19:48:31 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20scroll=20of=20grid=20view?= =?UTF-8?q?=20on=20mobile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/mixing_tab.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/mixing_tab.dart b/lib/mixing_tab.dart index 7506823..adfb68a 100644 --- a/lib/mixing_tab.dart +++ b/lib/mixing_tab.dart @@ -26,6 +26,7 @@ class _MixingTabState extends State { const SizedBox(height: 10), GridView.count( shrinkWrap: true, + physics: const NeverScrollableScrollPhysics(), childAspectRatio: (screenWidth - 32 - (10 * (cols - 1))) / cardHeight / cols, crossAxisCount: cols,