-
Notifications
You must be signed in to change notification settings - Fork 297
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problem in vue-native app textinput field cursor placement on editing the text #305
Comments
@dsgrunge1 Please share your code or a minimal repository which can reproduce the issue, since it is very difficult to say what is causing this otherwise. |
My App.vue File:
|
I am able to reproduce this only on Android. TextInputs with
I'm not able to reproduce this on React Native though (neither class nor functional components). Marking this as a bug. |
Ok |
Noticed this on my project too. Switching from fixed the issue but doesn't allow me to use v-model. |
This is caused by an issue in React Native 0.63 and above on Android This cannot be fixed until the TextInput component is fixed in React Native. Please use RN 0.62 for now to avoid the issue. If you are using Expo, you may need to eject or manually switch to RN 0.62 in the package.json |
I'm very new to mobile app development... I have encountered a problem in vue-native textinput field with "v-model" directive…
I typed the string “ImCoder” in the input field and then tried to edit it. I wanted to make the string “ImCoder” to “ImACoder”. But when i typed the “A” character in the “ImCoder” String by placing the cursor after “m”, the cursor went backwards and stood before the “A” character
Did anyone face similar this problem… Please Help… Thanks in advance…
20210312_135244.mp4
My "package.json" file:
{
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject"
},
"dependencies": {
"expo": "~40.0.0",
"expo-status-bar": "~1.0.3",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-40.0.1.tar.gz",
"react-native-web": "~0.13.12",
"vue-native-core": "0.2.0",
"vue-native-helper": "0.2.0"
},
"devDependencies": {
"@babel/core": "7.0.0",
"vue-native-scripts": "0.2.0"
},
"private": true
}
The text was updated successfully, but these errors were encountered: