내비게이션바 색 변경하기





방법


struct PageDetailViewView {

    var isDark = false


    init() {

        let appearance = UINavigationBarAppearance()

        appearance.configureWithOpaqueBackground()

        appearance.backgroundColor = UIColor.white

        appearance.titleTextAttributes = [.foregroundColorUIColor.black, .font : UIFont.systemFont(ofSize22)]

        appearance.largeTitleTextAttributes = [.foregroundColorUIColor.black]

        UINavigationBar.appearance().standardAppearance = appearance

        UINavigationBar.appearance().scrollEdgeAppearance = appearance

    }

    

    

    var body: some View {