I can't figure out how to set the navigation title colour on my watch OS app. I've tried everything I can think of, but it's always grey.
How do I make "My App" blue in this example
@main
struct GiveBloodApp: App {
@StateObject var appModel = AppModel()
@SceneBuilder var body: some Scene {
WindowGroup {
NavigationView {
Text("Hello World").multilineTextAlignment(.center)
.navigationTitle("My App")
}
}
}
}