I have implemented large titles in my app with the following code:
if #available(iOS 11.0, *) { navigationController?.navigationBar.prefersLargeTitle
I've the same problem and I fixed it by removing this line from AppDelegate:
AppDelegate
UINavigationBar.appearance().prefersLargeTitles = true
and handle prefersLargeTitles inside viewDidLoad in certain UIViewController
prefersLargeTitles
viewDidLoad
UIViewController