LongFormat
Represents the long format for expiration dates (MM/YYYY). This format requires 6 digits (2 for month, 4 for year) and displays them in the format MM/YYYY.
The format is used when a full year representation is required, providing more explicit date information.
Example:
// Use in text field
ExpirationDateTextField(
state = state,
onEvent = { /* handle events */},
dateFormat = ExpirationDateFormat.LongFormat
)
Content copied to clipboard