Skip to content

Instantly share code, notes, and snippets.

@achernoprudov
Created July 27, 2021 11:17
Show Gist options
  • Save achernoprudov/0659f93eef0f103b2338c97d212c3c69 to your computer and use it in GitHub Desktop.
Save achernoprudov/0659f93eef0f103b2338c97d212c3c69 to your computer and use it in GitHub Desktop.
UIMenu build level 1
UIMenu {
UIAction(title: "Open", image: UIImage(systemName: "xmark.octagon")) { _ in
...
}
UIMenu(title: "Edit") {
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