Skip to content

Instantly share code, notes, and snippets.

@achernoprudov
Last active July 27, 2021 11:03
Show Gist options
  • Save achernoprudov/4f57201d21a373060fcc1ece422e515d to your computer and use it in GitHub Desktop.
Save achernoprudov/4f57201d21a373060fcc1ece422e515d to your computer and use it in GitHub Desktop.
Building UIMenu in array DSL way
UIMenu(children: [
UIAction(title: "Open", image: UIImage(systemName: "xmark.octagon")) { _ in
...
},
UIMenu(title: "Edit", children: [
item.isHidden
? UIAction(title: "Show", image: UIImage(systemName: "eye")) { _ in
...
}
: UIAction(title: "Hide", image: UIImage(systemName: "eye.slash")) { _ in
...
},
UIAction(title: "Delete", image: UIImage(systemName: "bin")) { _ in
...
},
]),
])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment