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      

TAKE YOUR SKILLS TO THE NEXT LEVEL If you like Hacking with Swift, you'll love Hacking with Swift+ – it's my premium service where you can learn advanced Swift and SwiftUI, functional programming, algorithms, and more. Plus it comes with stacks of benefits, including monthly live streams, downloadable projects, a 20% discount on all books, and free gifts!

Find out more

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.