FUIEmailInputView
@MainActor
public class FUIEmailInputView : NibDesignable, UITextFieldDelegate
A simple UIView subclass to take email address as input.
Theming
Supported style classes
fdlFUIEmailInputView
fdlFUIEmailInputView_emailTextField
fdlFUIEmailInputView_bottomBorderView
-
The text field of FUIEmailInputView.
Declaration
Swift
@IBOutlet @IBInspectable @MainActor public private(set) var emailTextField: FUIAutoResizingTextField! { get }
-
The buttom padding height constraint from the bottom boarder to the view’s bottom. Sets the constant property of this constraint to add padding at the bottom of this
FUIEmailInputView
. The default constant property value is 0.Declaration
Swift
@IBOutlet @MainActor public private(set) var bottomPaddingViewHeightConstraint: NSLayoutConstraint! { get }
-
handler being called on text change.
Declaration
Swift
@MainActor public var onTextFieldChangeHandler: ((String) -> Void)?