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
I have a <TextArea> component with both value={myVariable} and multiline. When both are present, and I type a character into that input box, the character is continuously added and deleted in a loop. If I remove either input, the behavior works as expected, which is every character I type is added once
<TextArea
multiline
defaultValue={myVariable}
onChangeText={setMyVariable}
autoCompleteType={undefined}
/>
2. Type a letter into that input
### NativeBase Version
3.4.28
### Platform
- [ ] Android
- [ ] CRA
- [ ] Expo
- [X] iOS
- [ ] Next
### Other Platform
_No response_
### Additional Information
Could not get the issue to repro in Snack. Using VSCode, iOS 17.4, native-base 3.4.28
The text was updated successfully, but these errors were encountered:
Description
I have a <TextArea> component with both
value={myVariable}
andmultiline
. When both are present, and I type a character into that input box, the character is continuously added and deleted in a loop. If I remove either input, the behavior works as expected, which is every character I type is added onceCodeSandbox/Snack link
https://snack.expo.dev/Q5QFYFkPBBHXotrEDeVN_
Steps to reproduce
...
const [myVariable, setMyVariable] = useState('');
...
<TextArea multiline defaultValue={myVariable} onChangeText={setMyVariable} autoCompleteType={undefined} /> 2. Type a letter into that input ### NativeBase Version 3.4.28 ### Platform - [ ] Android - [ ] CRA - [ ] Expo - [X] iOS - [ ] Next ### Other Platform _No response_ ### Additional Information Could not get the issue to repro in Snack. Using VSCode, iOS 17.4, native-base 3.4.28The text was updated successfully, but these errors were encountered: