You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Guys, I know that has been some time since this issue was opened, but I've found some info in the React Native repository and it seems like this was a React Native bug and was fixed in v0.64.2. So if you are having this problem, try to update RN version.
Hello, here is code of input
<FloatingLabelInput
inputStyles={{
fontFamily: platform.fontTextFamily,
color: error === false ? platform.brandDarkGray : 'red',
}}
label={placeholder}
labelStyles={{fontFamily: platform.fontTextFamily}}
showCountdownStyles={{fontFamily: platform.fontTextFamily}}
isPassword
togglePassword={false}
value={valueX}
autoCorrect={false}
autoCapitalize="none"
showCountdownStyles={{
fontFamily: platform.fontTextFamily,
}}
containerStyles={
error === false
? styles.containerStyleInput
: styles.containerStyleInputError
}
onChangeText={onSubmit}
customLabelStyles={{
colorBlurred: error === false ? platform.brandDarkGray : 'red',
colorFocused: error === false ? platform.brandDarkGray : 'red',
}}
customShowPasswordComponent={
<Icon
name="eye-off-outline"
fill={error === false ? platform.brandPrimary : 'red'}
width={platform.twentyScale}
height={platform.twentyScale}
/>
}
customHidePasswordComponent={
<Icon
name="eye-outline"
fill={error === false ? platform.brandPrimary : 'red'}
width={platform.twentyScale}
height={platform.twentyScale}
/>
}
leftComponent={
<Icon
name="lock-outline"
fill={error === false ? platform.brandPrimary : 'red'}
width={platform.twentyScale}
height={platform.twentyScale}
/>
}
animationDuration={150}
/>
The text was updated successfully, but these errors were encountered: