Skip to content

Instantly share code, notes, and snippets.

@tieleman
Created April 22, 2020 08:25
Show Gist options
  • Save tieleman/4412a1035f1d78665ca2aff39c96946f to your computer and use it in GitHub Desktop.
Save tieleman/4412a1035f1d78665ca2aff39c96946f to your computer and use it in GitHub Desktop.
private func buildComplexButton() -> some View {
if someConditional {
return Button("Press me") {
// do something
}
} else {
return Button("No, press me") {
// do something else
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment