Is it possible to change the colour of a NavigationView Title?
I have done this:
NavigationView
{
Form
{
// Form Stuff
}
.navigationBarTitle(Text("Profile").color(Color.white))
}
However the title remains black, I have looked at the docs and there is apparently a property called navigationViewStyle
I don't even know if this would help but no matter where I put it it says its not a member of Navigation View and docs are blank for basically the entire class... so anyone managed to figure this out yet??
Ideally I would also change the Font too so it matched the rest of my app, but since it just seems to ignore any tags set to the Text object im assuming this is not how it is supposed to be done?