Open aprilmintacpineda opened 2 years ago
Am I really the only one experiencing this? It's quite weird that this isn't getting any attention, because it's literally just plain text input so I would expect others to experience this.
@aprilmintacpineda I’m encountering the same thing, awaiting for a fix
@aprilmintacpineda what react native version you’re using? A fix has been merged a while back.
0.67.3
I just saw 0.67.4 but the release notes doesn't talk about anything related to ios, it talked about a text input bug related to android. I'm just about to try it.
EDIT:
I'm now on 0.67.4 it still happens
@aprilmintacpineda I’m encountering the same thing, awaiting for a fix
Thanks for confirming! That gives me hope!
@aprilmintacpineda ignore the first quote on your comment above, I confused the issues 🥴.
oh, this has been around for years. yes it's a regular text input that flickers in a very basic scenario so user can tell for sure if the app was made using RN)) the problem seems to be due to lack of space to render the string, or some like that, so I made a wrapper that measures the size of text and sets a min height (+some extra actually) for the input. Not perfect, bu now I'm using it.
@Omelyan do you mind sharing the wrapper?
Any update on that?
Same Issue here, I'm trying to make a Note writting app. This only seems to happen when the TextInput Field is not already covering the whole screen, as soon as you get into the range where you can scroll your text it stops the behaviour.
Adding scrollEnabled={false}
can solve it
Also experiencing this problem - feels like it should be prioritized as it makes long text input unusable (unless you can turn off scrolling).
Related: https://github.com/facebook/react-native/issues/16826
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 not stale as it still exists.
Well, here we are, in September 2024, and the issue still exists.
React is cooked.
Oct 2024 issue still exist.
According to @dan_abramov2, removing Multiline
will fix this. Here's the source YouTube, X (Twitter)
cc: @Kakaranara @AspireOne @Omelyan @alexking
Nov 2024 still broken
Description
When you set
mutline
totrue
and enter/delete new lines, the scrolling is really flaky. Notice that this app was instantiated withnpx react-native init myapp --template react-native-template-typescript
Android
https://user-images.githubusercontent.com/21032419/155330305-e22acaae-0e77-422b-af85-c565f0e81073.mov
iOS
https://user-images.githubusercontent.com/21032419/155330662-c1bd6d24-d02a-4c6d-a6d4-8ce2010537cf.mov
Version
0.67.2
Output of
npx react-native info
Steps to reproduce
Adding
scrollEnabled={false}
will somehow fix the issue but:Snack, code example, screenshot, or link to a repository
No response