improve labels

This commit is contained in:
Fabian Freund
2026-01-21 15:21:18 +01:00
parent 9155b9bace
commit fe1b20af1b
2 changed files with 7 additions and 6 deletions
@@ -151,10 +151,11 @@ class FullSearchTermSuggestions extends HookConsumerWidget {
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
'Search Provider',
style: Theme.of(context).textTheme.labelSmall,
),
if (domain == null)
Text(
'Search Provider',
style: Theme.of(context).textTheme.labelSmall,
),
SmartBangSelector(
domain: domain,
searchTextController: searchTextController,
@@ -169,8 +169,8 @@ class _TabbedBangSelector extends HookConsumerWidget {
controller: tabController,
dividerColor: Colors.transparent,
tabs: const [
Tab(text: 'Site'),
Tab(text: 'All'),
Tab(text: 'Search On This Site'),
Tab(text: 'All Providers'),
],
),
),