How to remove light gray background behind views in a toolbar using .glassEffect

im using the code below to put a button in the toolbar of a NavigationStack, but Text seems to have a background behind it. How can I remove this background color?

 .toolbar {
         ToolbarItem(placement: .automatic) {
                            Button(action: {
                                                 
                            }) {
                                Text("Show More")
                                    .glassEffect(.regular.interactive())
                                    .buttonStyle(PlainButtonStyle())
                            }
                        }
}

Toolbaritem applies the glass effect so there is no need to add .glassEffect. This is the reason you are seeing an additional background.

See source code here: https://developer.apple.com/documentation/swiftui/landmarks-refining-the-system-provided-glass-effect-in-toolbars

How to remove light gray background behind views in a toolbar using .glassEffect
 
 
Q