どのようにカスタムフォントを使用してナビゲーションバーの背景色を変更するには?


プロローグ
こんにちは.
私は長い間定期的にここに書く予定です😄 私は怠惰なロバです、しかし、それは私の快適地帯の外で異なる何かをする時間です.多分簡単なものから始まる私はこの習慣を得るのを助ける.交差指とここに行く.

Q:カスタムフォントでナビゲーションバーの背景色を変更するには?
A : Swiftuiビューの初期化子で、これらの行を追加します
// Create a UINavigationBarAppearance object
     let appearance = UINavigationBarAppearance()
// Clear default background color
     appearance.shadowColor = .clear
// Change with your awesome color
     appearance.backgroundColor = UIColor(named: "TheColor")

// Add your font 
appearance.largeTitleTextAttributes = [
            .font: UIFont(name: "TheFont", size: 32)!,
        ]
        appearance.titleTextAttributes = [
            .font: UIFont(name: "TheFont", size: 20)!,
        ]

// And use your config object
UINavigationBar.appearance().scrollEdgeAppearance = appearance
        UINavigationBar.appearance().standardAppearance = appearance