fix: macOS Media Control not activated & remove Background Play switch on desktop (#1872)

* fix: macOS Media Control not activated

* fix: remove Background Play switch on desktop

asdf

Update lib/main.dart

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
0x535A
2026-03-22 16:25:31 +08:00
committed by GitHub
parent 236b524445
commit 8f00ca5680
3 changed files with 22 additions and 16 deletions

View File

@@ -565,15 +565,18 @@ class HeaderControlState extends State<HeaderControl>
);
},
),
Obx(
() => ActionRowLineItem(
iconData: Icons.play_circle_outline,
onTap: plPlayerController.setContinuePlayInBackground,
text: " 后台播放 ",
selectStatus:
plPlayerController.continuePlayInBackground.value,
if (PlatformUtils.isMobile)
Obx(
() => ActionRowLineItem(
iconData: Icons.play_circle_outline,
onTap:
plPlayerController.setContinuePlayInBackground,
text: " 后台播放 ",
selectStatus: plPlayerController
.continuePlayInBackground
.value,
),
),
),
],
),
),