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, pinned: true,
expandedHeight: 400, expandedHeight: 400,
automaticallyImplyLeading: kIsMobile, automaticallyImplyLeading: kIsMobile,
leading: kIsMobile leading:
? BackButton(color: color?.titleTextColor) kIsMobile ? const BackButton(color: Colors.white) : null,
: null,
iconTheme: IconThemeData(color: color?.titleTextColor), iconTheme: IconThemeData(color: color?.titleTextColor),
primary: true, primary: true,
backgroundColor: color?.color, backgroundColor: color?.color,

View File

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