Created
November 5, 2022 22:19
-
-
Save cjnevin/8eb93d87cb6fd42d1b8d3e23b05fca93 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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