Controller presents with the following code:
let vc = UIViewController()
vc.view.backgroundColor = Colors.green
let nvc = UINavigationController(rootViewController: vc)
self.present(nvc, animated: true, completion: nil)
It shows
but the navigation bar height is big. It should be like this
How to do the navigation bar height like on the second image?