TextInputFieldStyle
public protocol TextInputFieldStyle : DynamicProperty
Undocumented
-
Undocumented
Declaration
Swift
associatedtype Body : View -
Undocumented
Declaration
Swift
func makeBody(_ configuration: TextInputFieldConfiguration) -> Body
-
modifier(_:Extension method) Undocumented
Declaration
Swift
func modifier(_ modifier: some ViewModifier) -> some TextInputFieldStyle -
concat(_:Extension method) Undocumented
Declaration
Swift
func concat(_ style: some TextInputFieldStyle) -> some TextInputFieldStyle
-
decimalExtension methodThe
decimalstyle is applied for the case that theTextInputFieldallows only decimal input. It will filter out any non-digit characters.Declaration
Swift
static var decimal: TextInputFieldDecimalStyle { get }
-
numberExtension methodThe
numberstyle is applied for the case that theTextInputFieldallows only integer numeric input. It will filter out any non-digit characters and removes any decimal points.Declaration
Swift
static var number: TextInputFieldNumberStyle { get }
-
genericTextExtension methodThe
generic textstyle is applied for the case that theTextInputFieldallows generic text input. It will filter out any non-regular characters.Declaration
Swift
static var genericText: TextInputFieldGenericTextStyle { get }
-
phoneNumberExtension methodThe
phone numberstyle is applied for the case that theTextInputFieldallows phone number text input. It will filter out any non-regular characters.Declaration
Swift
static var phoneNumber: TextInputFieldPhoneNumberStyle { get }
-
customNumberExtension methodThe
custom numberstyle is applied for the case that theTextInputFieldallows custom number text input. It will filter out any non-regular characters.Declaration
Swift
static var customNumber: TextInputFieldCustomNumberStyle { get }
-
baseExtension methodUndocumented
Declaration
Swift
static var base: TextInputFieldBaseStyle { get }
-
fioriExtension methodUndocumented
Declaration
Swift
static var fiori: TextInputFieldFioriStyle { get }