File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -249,7 +249,7 @@ class _MaterialControlsState extends State<MaterialControls>
249
249
AnimatedOpacity _buildBottomBar (
250
250
BuildContext context,
251
251
) {
252
- final iconColor = Theme .of (context).textTheme.button ! .color;
252
+ final iconColor = Theme .of (context).textTheme.labelLarge ! .color;
253
253
254
254
return AnimatedOpacity (
255
255
opacity: notifier.hideStuff ? 0.0 : 1.0 ,
@@ -607,7 +607,8 @@ class _MaterialControlsState extends State<MaterialControls>
607
607
ChewieProgressColors (
608
608
playedColor: Theme .of (context).colorScheme.secondary,
609
609
handleColor: Theme .of (context).colorScheme.secondary,
610
- bufferedColor: Theme .of (context).backgroundColor.withOpacity (0.5 ),
610
+ bufferedColor:
611
+ Theme .of (context).colorScheme.background.withOpacity (0.5 ),
611
612
backgroundColor: Theme .of (context).disabledColor.withOpacity (.5 ),
612
613
),
613
614
),
Original file line number Diff line number Diff line change @@ -242,7 +242,7 @@ class _MaterialDesktopControlsState extends State<MaterialDesktopControls>
242
242
AnimatedOpacity _buildBottomBar (
243
243
BuildContext context,
244
244
) {
245
- final iconColor = Theme .of (context).textTheme.button ! .color;
245
+ final iconColor = Theme .of (context).textTheme.labelLarge ! .color;
246
246
247
247
return AnimatedOpacity (
248
248
opacity: notifier.hideStuff ? 0.0 : 1.0 ,
@@ -586,7 +586,8 @@ class _MaterialDesktopControlsState extends State<MaterialDesktopControls>
586
586
ChewieProgressColors (
587
587
playedColor: Theme .of (context).colorScheme.secondary,
588
588
handleColor: Theme .of (context).colorScheme.secondary,
589
- bufferedColor: Theme .of (context).backgroundColor.withOpacity (0.5 ),
589
+ bufferedColor:
590
+ Theme .of (context).colorScheme.background.withOpacity (0.5 ),
590
591
backgroundColor: Theme .of (context).disabledColor.withOpacity (.5 ),
591
592
),
592
593
),
You can’t perform that action at this time.
0 commit comments