简体   繁体   English

SwiftUI - 如何在导航栏中的标题旁边添加图像?

[英]SwiftUI - How to add an Image beside the title in the navigationbar?

How do I add an image to in the corner of the navigationbar, keeping the title in the center?如何在导航栏的角落添加图像,使标题保持在中心?

something like this -像这样的东西 -

在此处输入图像描述

here is the code:这是代码:

struct ContentView: View {
var body: some View {
            
    NavigationView{
        
        Text("Hello")

        .navigationBarTitleDisplayMode(.inline)
                .toolbar {
                    ToolbarItem(placement: .principal) {
                            Text("Title")
                                .font(.title)
                    }
                    
                    ToolbarItem(placement: .navigationBarTrailing) {
                            Image(Constants.logoImage).resizable()
                                .scaledToFit()
                                .frame(width: 100, height: 50, alignment: .trailing)
                        }
                    }
    }
}
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM