Package-level declarations
Functions
Link copied to clipboard
fun BillingTextField(text: String, modifier: Modifier = Modifier, onTextChanged: (String) -> Unit, onComplete: (String) -> Unit, onFocusLost: (String) -> Unit? = null, isError: Boolean = false, enabled: Boolean = true, hint: String = "", shape: Shape = RoundedCornerShape(8.dp), options: StandardTextFieldOptions = StandardTextFieldOptions(
inputType = StandardTextFieldOptions.InputType.NORMAL,
returnType = StandardTextFieldOptions.ReturnType.DONE,
))
Link copied to clipboard
fun CardCvcTextField(modifier: Modifier = Modifier, cardBrand: CardBrand, initialValue: String = "", onTextChanged: (TextFieldValue) -> Unit, onComplete: (String) -> Unit, onFocusLost: (String) -> Unit, isError: Boolean = false, errorMessage: String? = null, shape: Shape = OutlinedTextFieldDefaults.shape)
Link copied to clipboard
fun CardNumberTextField(cardSchemes: List<CardScheme>, onValueChange: (TextFieldValue, CardBrand) -> Unit, onComplete: (String) -> Unit, onFocusLost: (String) -> Unit, modifier: Modifier = Modifier, initialValue: String = "", isError: Boolean = false, shape: Shape = OutlinedTextFieldDefaults.shape)