canopas / UIPilot

The missing typesafe SwiftUI navigation library
https://canopas.github.io/UIPilot
MIT License
309 stars 27 forks source link

NavigationBarTitle Large does not display #44

Open AdzeB opened 1 year ago

AdzeB commented 1 year ago

Whenever I use .navigationBarTitleDisplayMode(.large) in any of my screens... it either doesn't display the title or makes it inline.

Do you know what might be the issue?

cp-amisha-i commented 10 months ago

Hello @AdzeB, I think the default display mode of the navigationTitle("Title") method is .large when you set the title with this method, and if you want to change its display mode then you can use this method, .navigationBarTitle("Title", displayMode: .inline).

Which version you are using?

AdzeB commented 10 months ago

Hello @cp-amisha-i , Thanks.