From eb1c8a499aefce8351fbbc715fdbeafa00c91067 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Bertholon Date: Thu, 16 May 2024 19:53:32 +0200 Subject: [PATCH] PLAYRTS-5405 PLAYRTS-5478 Better tvOS unfocused opacity on item descriptions Opacity option is not a good choice with gradient colors --- TV Application/Sources/LabeledCardButton.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TV Application/Sources/LabeledCardButton.swift b/TV Application/Sources/LabeledCardButton.swift index 67a7f5da5..a46d88128 100644 --- a/TV Application/Sources/LabeledCardButton.swift +++ b/TV Application/Sources/LabeledCardButton.swift @@ -48,7 +48,7 @@ struct LabeledCardButton: View { .layoutPriority(1) label() - .opacity(isFocused ? 1 : 0.5) + .opacity(isFocused ? 1 : 0.8) .offset(x: 0, y: isFocused ? 10 : 0) .scaleEffect(isFocused ? 1.1 : 1, anchor: .top) .animation(.easeInOut(duration: 0.1))