Fix tvOS view options sheet rendering in History and other views

This commit is contained in:
Arkadiusz Fal
2026-04-17 04:17:47 +02:00
parent a660591e8d
commit 546ecf632e

View File

@@ -41,6 +41,7 @@ struct ViewOptionsSheet: View {
#if os(tvOS)
private var tvOSContent: some View {
NavigationStack {
List {
Section {
Picker(selection: $layout) {
@@ -86,6 +87,9 @@ struct ViewOptionsSheet: View {
.padding(.horizontal, 40)
.padding(.vertical, 24)
}
.presentationDetents([.height(360), .large])
.presentationDragIndicator(.visible)
}
#endif
private var formContent: some View {