upgrade min sdk; run formatter
This commit is contained in:
@@ -39,21 +39,19 @@ class CustomListTile extends StatelessWidget {
|
||||
children: [
|
||||
Text(
|
||||
title,
|
||||
style:
|
||||
enabled
|
||||
? theme.textTheme.bodyLarge
|
||||
: theme.textTheme.bodyLarge?.copyWith(
|
||||
color: theme.disabledColor,
|
||||
),
|
||||
style: enabled
|
||||
? theme.textTheme.bodyLarge
|
||||
: theme.textTheme.bodyLarge?.copyWith(
|
||||
color: theme.disabledColor,
|
||||
),
|
||||
),
|
||||
Text(
|
||||
subtitle,
|
||||
style:
|
||||
enabled
|
||||
? subtitleTextTheme
|
||||
: theme.textTheme.bodyMedium?.copyWith(
|
||||
color: theme.disabledColor,
|
||||
),
|
||||
style: enabled
|
||||
? subtitleTextTheme
|
||||
: theme.textTheme.bodyMedium?.copyWith(
|
||||
color: theme.disabledColor,
|
||||
),
|
||||
),
|
||||
if (content != null) content!,
|
||||
],
|
||||
|
||||
@@ -34,9 +34,8 @@ class DefaultSearchSelector extends HookConsumerWidget {
|
||||
Expanded(
|
||||
child: SelectableChips(
|
||||
itemId: (bang) => bang.trigger,
|
||||
itemAvatar:
|
||||
(bang) =>
|
||||
UrlIcon([bang.getTemplateUrl('')], iconSize: 20),
|
||||
itemAvatar: (bang) =>
|
||||
UrlIcon([bang.getTemplateUrl('')], iconSize: 20),
|
||||
itemLabel: (bang) => Text(bang.websiteName),
|
||||
availableItems: availableBangs,
|
||||
selectedItem: activeBang,
|
||||
|
||||
Reference in New Issue
Block a user