diff --git a/Ring/Ring/Features/Walkthrough/Welcome/WelcomeViewController.swift b/Ring/Ring/Features/Walkthrough/Welcome/WelcomeViewController.swift index 30eae6d89d909a84445df5e8ea3e1e8de3a4180c..e537e5c0e62924ce9cf33441f47d3b57ae42c096 100644 --- a/Ring/Ring/Features/Walkthrough/Welcome/WelcomeViewController.swift +++ b/Ring/Ring/Features/Walkthrough/Welcome/WelcomeViewController.swift @@ -58,7 +58,9 @@ class WelcomeViewController: UIViewController, StoryboardBased, ViewModelBased { override func viewWillAppear(_ animated: Bool) { super.viewWillAppear(animated) - self.navigationController?.setNavigationBarHidden(true, animated: false) + self.navigationController?.navigationBar.setBackgroundImage(UIImage(), for: UIBarMetrics.default) + self.navigationController?.navigationBar.shadowImage = UIImage() + self.navigationController?.navigationBar.isTranslucent = true } }