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      

Hacking with Swift is sponsored by Essential Developer

SPONSORED Join a FREE crash course for mid/senior iOS devs who want to achieve an expert level of technical and practical skills – it’s the fast track to being a complete senior developer! Hurry up because it'll be available only until April 28th.

Click to save your free spot now

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.