react-native-paper-dates
react-native-paper-dates copied to clipboard
The date isn't updated if user types at the middle.
If the user types at the middle of the input in this screen, the date isn't updated.
Line 79-81 of TextInputMask.tsx file should be fixed like this if you don't mind.
if (enhancedText.length === mask.length) {
onChangeText && onChangeText(enhancedText)
}