在拆分视图中自定义侧边栏按钮图像

时间:2020-09-19 16:57:37

标签: ios swift swiftui splitview swiftui-navigationview

我有一个SwiftUI应用。在iPad上,启用拆分视图后,会出现侧边栏图标(左上方)。

iPad showing a sidebar on the left, and the main content on the right. A sidebar image shows in the top-left, which I want to change.

我无法使用.navigationBarBackButtonHidden(true)隐藏它来创建自己的自定义图片。

我该如何解决?

代码:

struct ContentView: View {
    
    var body: some View {
        NavigationView {
            Text("Sidebar")
            
            Text("Main content")
        }
    }
}

0 个答案:

没有答案