Skip to content

Instantly share code, notes, and snippets.

@tieleman
Created April 23, 2020 11:26
Show Gist options
  • Save tieleman/5c919f6f08dc0cba9c43f0f2c85b9bfb to your computer and use it in GitHub Desktop.
Save tieleman/5c919f6f08dc0cba9c43f0f2c85b9bfb to your computer and use it in GitHub Desktop.
private func buildComplexButton() -> some View {
Group {
if someConditional {
Button(action: { /* do something */ }) {
Text("1")
}
} else {
Button(action: { /* do something else */ }) {
Image(systemName: "faceid")
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment