SwiftUIで、Navigationの背景色をYellowに、Viewの背景色をYellowにした場合、Viewの背景色が濃く表示されてしまいます。
同じ色で統一はできないのでしょうか
解決先のご教示願います。
Navigation側
func setupNavigationBar() { let appearance = UINavigationBarAppearance() appearance.configureWithOpaqueBackground() appearance.backgroundColor = .yellow UINavigationBar.appearance().standardAppearance = appearance UINavigationBar.appearance().scrollEdgeAppearance = appearance }
View側のBackground
View側のBackground ```ここに言語を入力 VStack{ } .background(Color.yellow)
あなたの回答
tips
プレビュー