chore: Follow up better search

This commit is contained in:
Christian Kußowski 2025-12-21 10:38:52 +01:00
commit 043189cb47
No known key found for this signature in database
GPG key ID: E067ECD60F1A0652
3 changed files with 8 additions and 34 deletions

View file

@ -51,7 +51,12 @@ class SearchFooter extends StatelessWidget {
),
onPressed: isLoading ? null : onStartSearch,
icon: isLoading
? const CircularProgressIndicator.adaptive()
? SizedBox.square(
dimension: 18,
child: const CircularProgressIndicator.adaptive(
strokeWidth: 2,
),
)
: const Icon(Icons.arrow_downward_outlined),
label: Text(L10n.of(context).searchMore),
),