FUIAuthenticationInformationField
public struct FUIAuthenticationInformationField
This structure describes one input field for user input in the FUIDynamicAuthenticationScreen.
-
The placeholder string for the input field. Usually one-word description of the field, like ‘username’.
Declaration
Swift
public var placeholder: String -
This property indicates if the text should be secured or not. Usually if the field is for password, then this property should be true.
Declaration
Swift
public var isSecureText: Bool -
The pre-filled default string for this field. Set this property to
nilif there is no default string for this field.Declaration
Swift
public var informationString: String? -
The public constructor.
Declaration
Swift
public init(placeholder: String, isSecureText: Bool, informationString: String?)Parameters
placeholderThe placeholder for this input field.
isSecureTextIndicates if this input field is for secured text or not.
informationStringThe pre-filled default string for this field, if any.