Lee

Transparent NavigationBar

#SwiftUI
struct SomeView: View {
  init() {
    UINavigationBar.appearance().shadowImage = UIImage()
    UINavigationBar.appearance().setBackgroundImage(UIImage(), for: .default)
  }
}