react-native-floating-label-input
react-native-floating-label-input copied to clipboard
onPressIn not working in android
OnPressIn prop works in ios but its not working in android.
<FloatingLabelInput
label={label}
value={value}
onChangeText={onChangeValue}
onPressIn={onPress}
containerStyles={tw.style(
'border-[1px] p-3 rounded-sm border-gray-300',
isPressed && 'border-black',
showError && 'border-red-500',
)}
editable={isEditable}
animationDuration={100}
onFocus={() => setIsPressed(true)}
onBlur={() => setIsPressed(false)}
isPassword={isPassword}
darkTheme
/>