Open DenisPostnikov opened 1 year ago
Any update in this issue? I'm also facing issue in Android 13.
me too facing issue in android 13
Potentially related to #35590 What happens if you copy-paste a wall of text?
@cortinico No solution in #35590 also. Any other solution to fix it immediately?
Try drawing your list upside down, and then the contents in the list upside down. https://github.com/facebook/react-native/issues/35350
Try drawing your list upside down, and then the contents in the list upside down. #35350
I used TextInput without Flatlist
Try drawing your list upside down, and then the contents in the list upside down. #35350
I used TextInput without Flatlist
Is the view above your textinput using a flatlist or sectionlist?
@stelmakhivan Myself using inverted Flatlist and TextInput. Both are in different component. How inverted list is related to this TextInput lag issue?
Try drawing your list upside down, and then the contents in the list upside down. #35350
I used TextInput without Flatlist
Is the view above your textinput using a flatlist or sectionlist?
Nothing from this only View
Did anyone have any success fixing this? I'm using react-native-gifted-chat so not so straightforward to invert FlatList with CSS transforms.
Try drawing your list upside down, and then the contents in the list upside down. #35350
I used TextInput without Flatlist
Is the view above your textinput using a flatlist or sectionlist?
Nothing from this only View
Can you share the code you are using to render that list?
Try drawing your list upside down, and then the contents in the list upside down. #35350
I used TextInput without Flatlist
Is the view above your textinput using a flatlist or sectionlist?
Nothing from this only View
Can you share the code you are using to render that list?
<TextInput multiline editable={!isDisabled} placeholder={_( isDisabled ? 'CHAT_INPUT_PLACEHOLDER_DISABLED' : 'CHAT_INPUT_PLACEHOLDER', )} placeholderTextColor={AppStyles.placeholderColor} style={[ styles.input, {maxHeight: conversationChat ? 105 : 140} ]} value={message} onChangeText={this.onMessageChanged} onFocus={this.props.onFocusChatInput} onBlur={this.props.onBlurChatInput} />
Potentially related to #35590
I can reproduce this issue on a Pixel device that has never seen Grammarly and is running an app using React Native v0.70.9, where that issue has been fixed.
What happens if you copy-paste a wall of text?
It's not the amount of text (copy-pasting a large block of text is fine), but the number of edits (including deletions). Simply typing and deleting a single character 50x is enough to make the input lag severely.
Duplicate of https://github.com/facebook/react-native/issues/35350?
It's not the amount of text (copy-pasting a large block of text is fine), but the number of edits (including deletions).
Also happens on Samsung Galaxy A52 Android 13, quite consistently in real use when writing normal messages and fixing swiped words.
Simply typing and deleting a single character 50x is enough to make the input lag severely.
Can reproduce consistently with this method!
This is a five-year-old issue: #20119. Do not hold your breath for a solution.
This issue is stale because it has been open 180 days with no activity. Remove stale label or comment or this will be closed in 7 days.
This issue is stale because it has been open 180 days with no activity. Remove stale label or comment or this will be closed in 7 days.
So the way bugs in RN are handled is to ignore them and hope nobody comments on them?
This issue is stale because it has been open 180 days with no activity. Remove stale label or comment or this will be closed in 7 days.
This issue is stale because it has been open 180 days with no activity. Remove stale label or comment or this will be closed in 7 days.
Not today bot. This issue stays open as long as I'm alive, despite it being totally ignored for years.
Description
Device Pixel, Android 13
Case 1: During typing a of text observed lagging.
Case 2: After typing a lot of text into a Text Input, we start freezing.
Adding autoCorrect={false}, keyboardType="visible-password" and returnKeyType='none' not helped.
Version
0.68.5
Output of
npx react-native info
-
Steps to reproduce
Start typing in TextInput on the Pixel device.
Snack, code example, screenshot, or link to a repository