UPGRADE YOUR SKILLS: Learn advanced Swift and SwiftUI on Hacking with Swift+! >>

Get rid of NavigationView Shadow on detail view

Forums > SwiftUI

In my navigationview's detail view I have an inline title. I'm trying to remove the line that appears beneath the inline title. I thought using UINavigationBar.appearance().standardAppearance.shadowColor = .clear would do the trick, but it definitely does not work.

Any thoughts on how to remove that line?

3      

Hey,

I believe what you want is this:

UINavigationBar.appearance().standardAppearance.configureWithTransparentBackground()

Let me know if that did what you need :)

--Jakub

3      

No that didn't work. What does work on my initial launch screen is this:

let navBarAppearance = UINavigationBarAppearance()
     navBarAppearance.shadowImage = nil // line
     navBarAppearance.shadowColor = .none // line

I thought having this code in the AppDelegate meant that it would cascade down to every child view. Is that not true?

3      

the only way I've found to remove it is with:

.onAppear(perform: { UITableView.appearance().separatorStyle = .none })

3      

BUILD THE ULTIMATE PORTFOLIO APP Most Swift tutorials help you solve one specific problem, but in my Ultimate Portfolio App series I show you how to get all the best practices into a single app: architecture, testing, performance, accessibility, localization, project organization, and so much more, all while building a SwiftUI app that works on iOS, macOS and watchOS.

Get it on Hacking with Swift+

Sponsor Hacking with Swift and reach the world's largest Swift community!

Archived topic

This topic has been closed due to inactivity, so you can't reply. Please create a new topic if you need to.

All interactions here are governed by our code of conduct.

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.