Add a gap between the search bar and import section on the Add App page

This commit is contained in:
Imran Remtulla
2026-06-28 16:50:10 +01:00
parent 1814709667
commit f85309b97f

View File

@@ -834,8 +834,10 @@ class AddAppPageState extends State<AddAppPage> {
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(),