Open marciojs186 opened 2 years ago
+1
+1 Same here, I pass an initial value to the input and its not showing it. The "value" prop doesn't work.
@marciojs186 @vxxvvxxv @dleonven Hope this helps. Use the ref to clear the initial value.
const [value, setValue] = useState('')
const inputRef = createRef<TextInput>()
useEffect(() => {
// this is a fix for when masked input would force value 0 instead of placeholder
if (value === '0') {
inputRef.current?.clear()
}
}, [inputRef, value])
return (
...
<MaskedInput
ref={inputRef}
type="currency" // it only works if type is currency
placeholder={'initial value'}
onChangeText={(text, rawText) => {
setValue(rawText)
}}
value={value}
/>
...
)
How do I delete the input text value, I can't at all.