Skip to content

Instantly share code, notes, and snippets.

@tieleman
Created April 22, 2020 09:10
Show Gist options
  • Save tieleman/77744414bbd15f5b61159156fe530086 to your computer and use it in GitHub Desktop.
Save tieleman/77744414bbd15f5b61159156fe530086 to your computer and use it in GitHub Desktop.
private func buildComplexButton() -> some View {
if someConditional {
return Button(action: { /* do something */ }) {
Text("1")
}
} else {
return 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