In SwiftUI 2.0 (iOS 14+) you can make a dropdown menu with Menu.
Menu {
Button {
// do something
} label: {
Text("Linear")
Image(systemName: "arrow.down.right.circle")
}
Button {
// do something
} label: {
Text("Radial")
Image(systemName: "arrow.up.and.down.circle")
}
} label: {
Text("Style")
Image(systemName: "tag.circle")
}