Disable scroll clipping for tvOS video listing grids

Allows focus-scaled cards to render past scroll view bounds on History,
Bookmarks, Search, and Instance browse screens.
This commit is contained in:
Arkadiusz Fal
2026-04-17 07:02:15 +02:00
parent a0015086a2
commit 6eec42241d
4 changed files with 8 additions and 0 deletions

View File

@@ -259,6 +259,9 @@ struct BookmarksListView: View {
}
}
}
#if os(tvOS)
.scrollClipDisabled()
#endif
}
// MARK: - Helper Views

View File

@@ -317,6 +317,9 @@ struct HistoryListView: View {
}
}
}
#if os(tvOS)
.scrollClipDisabled()
#endif
}
private var confirmationTitle: String {

View File

@@ -227,6 +227,7 @@ struct InstanceBrowseView: View {
}
}
}
.scrollClipDisabled()
.refreshable {
await startContentLoad(forceRefresh: true)
}

View File

@@ -946,6 +946,7 @@ struct SearchView: View {
gridResultsContent
}
}
.scrollClipDisabled()
.accessibilityLabel("search.results")
.background(
GeometryReader { geometry in