Adjust tvOS video cell dimensions for better layout

Reduced video cell and grid item sizes on tvOS to improve layout spacing
and visual consistency. Changed grid item size from 600 to 560 pixels,
and adjusted video cell frame dimensions accordingly.
This commit is contained in:
Arkadiusz Fal
2025-11-19 18:54:51 +01:00
parent 33377f7e0e
commit a37f3e4a07
2 changed files with 3 additions and 3 deletions

View File

@@ -84,7 +84,7 @@ struct VerticalCells<Header: View>: View {
#if os(iOS)
return verticalSizeClass == .regular ? 320 : 800
#elseif os(tvOS)
return 600
return 560
#else
return 320
#endif
@@ -92,7 +92,7 @@ struct VerticalCells<Header: View>: View {
var adaptiveGridItemMaximumSize: Double {
#if os(tvOS)
return 600
return 560
#else
return .infinity
#endif