Is there anyway to change the .navigationTitle color? I tried .foregroundColor and even passing the Text as a view but that did not work.
var body: some View {
VStack(alignment: .leading) {
Divider()
Spacer()
.navigationTitle(myList.name)
}.padding()
}
I also tried using the UINavigationBar appearance:
UINavigationBar.appearance().largeTitleTextAttributes = [NSAttributedString.Key.foregroundColor: UIColor.red]