Skip to content

Commit

Permalink
feat: adjust lyric page blurriness and player playbutton
Browse files Browse the repository at this point in the history
  • Loading branch information
KRTirtho committed Apr 6, 2023
1 parent b2c4ea1 commit 54d5907
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions lib/components/player/player_controls.dart
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,9 @@ class PlayerControls extends HookConsumerWidget {
horizontal: 8.0,
),
child: DefaultTextStyle(
style: theme.textTheme.bodySmall!
.copyWith(color: dominantColor?.titleTextColor),
style: theme.textTheme.bodySmall!.copyWith(
color: palette?.dominantColor?.bodyTextColor,
),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Expand Down Expand Up @@ -204,7 +205,7 @@ class PlayerControls extends HookConsumerWidget {
foregroundColor: dominantColor?.titleTextColor ??
theme.colorScheme.onPrimary,
padding: const EdgeInsets.all(12),
iconSize: 30,
iconSize: 24,
),
onPressed: Actions.handler<PlayPauseIntent>(
context,
Expand Down
2 changes: 1 addition & 1 deletion lib/pages/lyrics/lyrics.dart
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class LyricsPage extends HookConsumerWidget {
),
),
child: BackdropFilter(
filter: ImageFilter.blur(sigmaX: 50, sigmaY: 50),
filter: ImageFilter.blur(sigmaX: 15, sigmaY: 15),
child: Column(
children: [
const SizedBox(height: 5),
Expand Down

0 comments on commit 54d5907

Please sign in to comment.