Remove duplicate navigation titles on tvOS

The sidebarAdaptable TabView already shows tab names in the sidebar
pill, so the large .navigationTitle() was redundant on tvOS.
This commit is contained in:
Arkadiusz Fal
2026-02-14 16:24:11 +01:00
parent 08c544d161
commit 1fa6d7a4a5
8 changed files with 9 additions and 7 deletions

View File

@@ -127,8 +127,8 @@ struct SearchView: View {
.frame(maxWidth: .infinity, maxHeight: .infinity)
}
}
.navigationTitle(String(localized: "tabs.search"))
#if !os(tvOS)
.navigationTitle(String(localized: "tabs.search"))
.toolbarTitleDisplayMode(.inlineLarge)
#endif
.toolbar {