From d351b86f414fb1942db007690eaffe082b7d9a3a Mon Sep 17 00:00:00 2001 From: Alberto Ponces Date: Wed, 17 Aug 2022 13:57:52 +0100 Subject: [PATCH] fix: the list of patches to be applied can get huge... --- lib/ui/views/patcher/patcher_view.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ui/views/patcher/patcher_view.dart b/lib/ui/views/patcher/patcher_view.dart index 3aa06215..6985c4c9 100644 --- a/lib/ui/views/patcher/patcher_view.dart +++ b/lib/ui/views/patcher/patcher_view.dart @@ -28,7 +28,7 @@ class PatcherView extends StatelessWidget { ), ), body: SafeArea( - child: Padding( + child: SingleChildScrollView( padding: const EdgeInsets.all(12.0), child: Column( crossAxisAlignment: CrossAxisAlignment.start,