Skip to content

Instantly share code, notes, and snippets.

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