Skip to content

Instantly share code, notes, and snippets.

@achernoprudov
Created July 27, 2021 11:02
Show Gist options
  • Save achernoprudov/a31e848c451ca96cc4252bb99504bebf to your computer and use it in GitHub Desktop.
Save achernoprudov/a31e848c451ca96cc4252bb99504bebf to your computer and use it in GitHub Desktop.
Building UIMenu with DSL
UIMenu {
UIAction("Open", icon "xmark.octagon") { _ in
...
}
UIMenu(title: "Edit") {
if item.isHidden {
UIAction("Show", icon: "eye") { _ in
...
}
} else {
UIAction("Hide", icon: "eye.slash") { _ in
...
}
}
UIAction("Delete", icon: "bin") { _ in
...
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment