chore: fix colors

This commit is contained in:
Kingkor Roy Tirtho 2023-06-18 15:01:11 +06:00
parent 65fa3cb624
commit 93bd4dc3aa
2 changed files with 3 additions and 3 deletions

View File

@ -166,9 +166,8 @@ class TrackCollectionView<T> extends HookConsumerWidget {
pinned: true,
expandedHeight: 400,
automaticallyImplyLeading: kIsMobile,
leading: kIsMobile
? BackButton(color: color?.titleTextColor)
: null,
leading:
kIsMobile ? const BackButton(color: Colors.white) : null,
iconTheme: IconThemeData(color: color?.titleTextColor),
primary: true,
backgroundColor: color?.color,

View File

@ -77,6 +77,7 @@ class SearchPage extends HookConsumerWidget {
),
color: theme.scaffoldBackgroundColor,
child: TextField(
autofocus: true,
decoration: InputDecoration(
prefixIcon: const Icon(SpotubeIcons.search),
hintText: "${context.l10n.search}...",