struct MyView: View { var body: some View { VStack { Text("Hello World") } .navigationBarTitleDisplayMode(.inline) .toolbar { ToolbarItem(placement: .principal) { HStack { Image(systemName: "sun.min.fill") Text("My Title") .font(.headline) .foregroundColor(.white) } } } } }