Skip to content
Snippets Groups Projects
NavigationBar.swift 535 B
Newer Older
Bruno Muniz's avatar
Bruno Muniz committed
import UIKit

public extension UINavigationBar {
    func customize(
        translucent: Bool = false,
        backgroundColor: UIColor = .clear,
        shadowColor: UIColor? = nil
    ) {
        isTranslucent = translucent
        let barAppearance = UINavigationBarAppearance()
        barAppearance.backgroundColor = backgroundColor
        barAppearance.backgroundEffect = .none
        barAppearance.shadowColor = shadowColor
        standardAppearance = barAppearance
        scrollEdgeAppearance = standardAppearance
    }
}