You can wrap your view like this to disable the double navigation title if it's not needed and to prevent the background bug
.sheet(item: $item) { item in
NavigationStack {
YourView(item)
.toolbarVisibility(.hidden, for: .navigationBar)
.presentationBackground(.background)
}
}
Topic:
UI Frameworks
SubTopic:
SwiftUI
Tags: