Is it possible to have a submenu with .multicolor rendered icon? It works for Menu itself, but not for submenu.
It also works fine in UIKit with UIMenu as a submenu.
var body: some View {
Menu {
Menu {
Text("test")
} label: {
Label {
Text("Color Label submenu")
} icon: {
Image(systemName: "circle.hexagongrid.fill")
.symbolRenderingMode(.multicolor)
}
}
} label: {
Label {
Text("Color Label")
} icon: {
Image(systemName: "circle.hexagongrid.fill")
.symbolRenderingMode(.multicolor)
}
}
}
}