Changes
1 changed files (+4/-2)
-
-
@@ -65,7 +65,7 @@ .font(.title3).disabled(isPerformingAction) .disabled(!(zone?.isPreviousAllowed ?? false)) if zone?.state == .playing { ZStack { Button { Task { await performAction(.pause)
-
@@ -76,7 +76,8 @@ }.font(.title) .disabled(isPerformingAction) .disabled(!(zone?.isPauseAllowed ?? false)) } else { .opacity(zone?.state != .playing ? 0 : 1) Button { Task { await performAction(.play)
-
@@ -87,6 +88,7 @@ }.font(.title) .disabled(isPerformingAction) .disabled(!(zone?.isPlayAllowed ?? false)) .opacity(zone?.state == .playing ? 0 : 1) } Button {
-