Do you know how to remove the indicator from the Menu Component? My minimum OS version is 11.0
Menu {
Button(action: {
changeLanguage("ko")
}) {
Text("한국어")
}
Button(action: {
changeLanguage("en")
}) {
Text("English")
}
Button(action: {
changeLanguage("ja")
}) {
Text("日本語")
}
Button(action: {
changeLanguage("zh-Hans")
}) {
Text("中国话")
}
} label : {
Image("globe")
}
.frame(width: 40, height: 25)
.menuStyle(BorderlessButtonMenuStyle())
I'd like to get rid of the arrow on the right side.
