Skip to content

Instantly share code, notes, and snippets.

@MikeSilvis
Created February 1, 2017 23:19
Show Gist options
  • Save MikeSilvis/9eb2634dec2c9b646f4b6a2c9ffdaf19 to your computer and use it in GitHub Desktop.
Save MikeSilvis/9eb2634dec2c9b646f4b6a2c9ffdaf19 to your computer and use it in GitHub Desktop.
private func didTapSubmit() -> GAMComponentActionButton.Config.ButtonTapClosure {
return {
print("YOLO")
}
}
private func actionButtonConfig() -> GAMComponentActionButton.Config {
return GAMComponentActionButton.Config(title: "Submit",
backgroundColor: GTColor.black.absolute,
buttonTapClosure: didTapSubmit()
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment