Skip to content

Instantly share code, notes, and snippets.

@cjnevin
Created November 5, 2022 22:19
Show Gist options
  • Save cjnevin/8eb93d87cb6fd42d1b8d3e23b05fca93 to your computer and use it in GitHub Desktop.
Save cjnevin/8eb93d87cb6fd42d1b8d3e23b05fca93 to your computer and use it in GitHub Desktop.
@propertyWrapper
struct EmailStyle {
@Lazy var wrappedValue = configure(FormTextField()) { textField in
textField.autocapitalizationType = .none
textField.autocorrectionType = .no
textField.placeholder = "Email"
textField.layer.borderWidth = 1
textField.validColor = .systemGreen
textField.invalidColor = .systemRed
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment