Prior to iOS 16, DisclosureGroup arrow was opaque.
However, in iOS 17, the following code makes the arrow translucent:
DisclosureGroup { Text("Title") } label: { Text("Label") }
When DisclosureGroup is in List, it is opaque, as in iOS 16:
List { DisclosureGroup { Text("Title") } label: { Text("Label") } }
Is this expected behavior? And is there a way to change the opacity of arrows without a custom style in iOS 17?