Title: tvOS 26 SwiftUI .searchable is overlapped by the sidebar collapse button I'm seeing what appears to be a SwiftUI layout issue on tvOS 26 involving .searchable and sidebar-based navigation. When a sidebar is collapsed, tvOS shows the system sidebar toggle/collapse control in the upper-left corner. A SwiftUI .searchable field placed locally on the Search page is positioned too close to the top of the screen, causing the sidebar control to overlap the search field. Environment tvOS 26 SwiftUI Tested on a physical Apple TV Xcode 26 Example structure My app originally used: NavigationSplitView { SidebarView() } detail: { SearchView() } The search modifier is applied only to the Search page: struct SearchView: View { @State private var searchText = var body: some View { ScrollView { // Search content } .searchable( text: $searchText, placement: .automatic ) } } The .searchable modifier is not applied to NavigationSplitView or the root view. When the sidebar is collapsed,
0
0
59