diff --git a/mlbTVOS/Views/ContentView.swift b/mlbTVOS/Views/ContentView.swift index 88dbbef..468b158 100644 --- a/mlbTVOS/Views/ContentView.swift +++ b/mlbTVOS/Views/ContentView.swift @@ -22,6 +22,7 @@ struct ContentView: View { ) .padding(.horizontal, DS.Spacing.edgeInset) .padding(.top, navPadTop) + .platformFocusSection() if showsTicker { ScoresTickerView() @@ -43,6 +44,7 @@ struct ContentView: View { } } .frame(maxWidth: .infinity, maxHeight: .infinity, alignment: .top) + .platformFocusSection() } } .task { diff --git a/mlbTVOS/Views/DashboardView.swift b/mlbTVOS/Views/DashboardView.swift index 7bd2e3d..b8a27c5 100644 --- a/mlbTVOS/Views/DashboardView.swift +++ b/mlbTVOS/Views/DashboardView.swift @@ -120,6 +120,7 @@ struct DashboardView: View { ScrollView { VStack(alignment: .leading, spacing: contentSpacing) { headerSection + .platformFocusSection() if viewModel.isLoading { loadingState @@ -127,7 +128,9 @@ struct DashboardView: View { errorState(error) } else { overviewStrip + .platformFocusSection() heroAndControlSection + .platformFocusSection() if !viewModel.liveGames.isEmpty { gameShelf( diff --git a/mlbTVOS/Views/LeagueCenterView.swift b/mlbTVOS/Views/LeagueCenterView.swift index 0794273..c0fb813 100644 --- a/mlbTVOS/Views/LeagueCenterView.swift +++ b/mlbTVOS/Views/LeagueCenterView.swift @@ -35,16 +35,18 @@ struct LeagueCenterView: View { } scheduleSection + .platformFocusSection() #if os(tvOS) - // Side-by-side: standings left, leaders right HStack(alignment: .top, spacing: 24) { standingsSection .frame(maxWidth: .infinity) + .platformFocusSection() if !viewModel.leagueLeaders.isEmpty { leadersColumnSection .frame(width: 420) + .platformFocusSection() } } #else @@ -56,6 +58,7 @@ struct LeagueCenterView: View { #endif teamsSection + .platformFocusSection() if let selectedTeam = viewModel.selectedTeam { teamProfileSection(team: selectedTeam)