Vgs Expiry Outlined Text Field
fun VgsExpiryOutlinedTextField(state: VgsExpiryTextFieldState, onStateChange: (state: VgsExpiryTextFieldState) -> Unit, modifier: Modifier = Modifier, enabled: Boolean = true, readOnly: Boolean = false, textStyle: TextStyle = LocalTextStyle.current, label: @Composable () -> Unit? = null, placeholder: @Composable () -> Unit? = null, leadingIcon: @Composable () -> Unit? = null, trailingIcon: @Composable () -> Unit? = null, isError: Boolean = false, keyboardOptions: KeyboardOptions = KeyboardOptions.Default, keyboardActions: KeyboardActions = KeyboardActions.Default, interactionSource: MutableInteractionSource? = null, shape: Shape = TextFieldDefaults.OutlinedTextFieldShape, colors: TextFieldColors = TextFieldDefaults.outlinedTextFieldColors())
Outlined Material variant of VgsExpiryTextField. See VgsExpiryTextField for usage. Parameters match androidx.compose.material.OutlinedTextField.