mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-14 16:25:16 +00:00
feat: adjust lyric page blurriness and player playbutton
This commit is contained in:
parent
b2c4ea13f6
commit
54d5907f14
@ -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: [
|
||||
@ -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,
|
||||
|
@ -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),
|
||||
|
Loading…
Reference in New Issue
Block a user