From f85309b97fb1f59629b1c539b323585f45ff59fc Mon Sep 17 00:00:00 2001 From: Imran Remtulla Date: Sun, 28 Jun 2026 16:50:10 +0100 Subject: [PATCH] Add a gap between the search bar and import section on the Add App page --- lib/pages/add_app.dart | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/pages/add_app.dart b/lib/pages/add_app.dart index 4b361c64..3871c2de 100644 --- a/lib/pages/add_app.dart +++ b/lib/pages/add_app.dart @@ -834,8 +834,10 @@ class AddAppPageState extends State { appsProvider, doingSomething, ), - if (pickedSource == null && userInput.isEmpty) + if (pickedSource == null && userInput.isEmpty) ...[ + if (_shouldShowSearchBar()) const SizedBox(height: 16), const ImportSection(), + ], if (pickedSource != null) FutureBuilder( future: pickedSource?.getSourceNote(),