fix(tv): poster design and other stuff

This commit is contained in:
Fredrik Burmester
2026-01-30 09:15:44 +01:00
parent 0cd74519d4
commit aed3a8f493
26 changed files with 758 additions and 1362 deletions

View File

@@ -59,7 +59,7 @@ struct GlassPosterView: View {
.glassEffect(.regular, in: RoundedRectangle(cornerRadius: cornerRadius, style: .continuous))
.focusable()
.focused($isInternallyFocused)
.scaleEffect(isCurrentlyFocused ? 1.08 : 1.0)
.scaleEffect(isCurrentlyFocused ? 1.05 : 1.0)
.animation(.easeOut(duration: 0.15), value: isCurrentlyFocused)
}
#endif
@@ -87,7 +87,7 @@ struct GlassPosterView: View {
}
}
.frame(width: width, height: height)
.scaleEffect(isFocused ? 1.08 : 1.0)
.scaleEffect(isFocused ? 1.05 : 1.0)
.animation(.easeOut(duration: 0.15), value: isFocused)
}