Hello Ikester, have you tried giving the button a modifier .zIndex() or applying an .overlay() to the detail view of your NavigationSplitView? Maybe if you implement the two buttons in an .overlay() and give those buttons an .offset() as well it might work. NavigationSplitView() { //your navigation views } detail: { //your content views } .overlay() { Button(click me) {} .offset(CGSize(width: 10, height: 10)) } For accurate positioning you could add a GeometryReader(){geometry in}. If this doesn’t work this maybe will: .toolbarVisibility( .hidden, for: .navigationBar, .tabBar) you add this modifier to your first nested view inside the NavigationSplitView. This is much better explained here: https://developer.apple.com/documentation/swiftui/view/toolbarvisibility(_:for:) I hope this helps.🙂
Topic:
UI Frameworks
SubTopic:
SwiftUI
Tags: