I am trying to create a simple toolbar button in SwiftUI using NavigationStack, but it always shows an unwanted light circular/rounded background around the icon.

I want to remove the circular background from the icon. Here is my current code:
var body: some View {
NavigationStack {
ZStack {
Color.indigo.ignoresSafeArea()
}
.navigationTitle(Strings.chats)
.navigationBarTitleDisplayMode(.large)
.toolbar {
ToolbarItem(placement: .topBarTrailing) {
Button {
} label: {
Image(systemName: "plus")
}
}
}
}
.toolbarBackground(.clear, for: .navigationBar)
.toolbarBackgroundVisibility(.hidden, for: .navigationBar)
}
