TextInput is unstable for Korean. (iOS only)
See original GitHub issuePlease provide all the information requested. Issues that do not follow this format are likely to stall.
Description
Hi. I found the issue on iOS devices. I’m typing with Korean on TextInput. but font size changes madly or flickering during typing. It’s fine for english. It only has issue for Korean or mixing english and korean.
It causes from two ways.
- Font family is not assigned.
- Font family is Korean font.(NotoSansKR or Apple SD Gothic Neo) It looks good this way. but If add props like value and event handler(onChangeText) for changing value, it makes unstable, too.
It only works very well functionally. appearance is so bad.
That issue very annoying to me.
React Native version:
System:
OS: macOS 10.15.5
CPU: (12) x64 Intel(R) Core(TM) i7-9750H CPU @ 2.60GHz
Memory: 738.23 MB / 32.00 GB
Shell: 5.7.1 - /bin/zsh
Binaries:
Node: 14.0.0 - /usr/local/bin/node
Yarn: 1.22.4 - /usr/local/bin/yarn
npm: 6.14.4 - /usr/local/bin/npm
Watchman: 4.9.0 - /usr/local/bin/watchman
Managers:
CocoaPods: 1.9.2 - /usr/local/bin/pod
SDKs:
iOS SDK:
Platforms: iOS 13.5, DriverKit 19.0, macOS 10.15, tvOS 13.4, watchOS 6.2
Android SDK: Not Found
IDEs:
Android Studio: 3.6 AI-192.7142.36.36.6392135
Xcode: 11.5/11E608c - /usr/bin/xcodebuild
Languages:
Java: 1.8.0_252 - /usr/bin/javac
Python: 2.7.16 - /usr/bin/python
npmPackages:
@react-native-community/cli: Not Found
react: 16.11.0 => 16.11.0
react-native: 0.62.2 => 0.62.2
npmGlobalPackages:
*react-native*: Not Found
Steps To Reproduce
The issue for TextInput only. Not Text component.
- Font family is none.
- Font family is Korean font. but using props(value and onChangeText)
and typing Korean text.
Expected Results
I just want it looks stable.
Snack, code example, screenshot, or link to a repository:
<TextInput style={{width: "100%", backgroundColor: "#eeeeee", fontSize: 14}}/>
<TextInput style={{width: "100%", backgroundColor: "#eeeeee", fontFamily: "NotoSansKR-Regular", fontSize: 14}}
value={this.state.textValue}
onChangeText={(text) => this.setState({textValue: text})}/>
Issue Analytics
- State:
- Created 3 years ago
- Comments:6
Top Results From Across the Web
Cisco IOS version so unstable we will no longer use cisco
Recent Cisco IOS version for stack switching is so unstable we have pulled Cisco Inventory. IOS bugs causing stacks to reboot, and all...
Read more >Apple iOS 16.0.2 Release: Should You Upgrade? - Forbes
Addresses an issue where touch input was unresponsive on some iPhone X, iPhone XR, and iPhone 11 displays after being serviced. The first...
Read more >User Manual LSX - KEF
7.4.2 Android and iOS (Non Airplay 2) Method . ... Use the speakers only as described in this user manual. Any other use...
Read more >Questions and Answers - PONOS | Battle Cats
Can I use Save Data Transfer between iOS and Android devices? Yes, you can. Please refer to this page for instructions ... Where...
Read more >Help - PRISM Live Studio
For iPhone users, this function is available only on iOS 11 or higher. Please note that videos and sounds from some webpages may...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
It’s RN issue. You can use this patch. https://github.com/ifsnow/react-native-cjk-textinput-patch#readme
If multiline is true, it works very well strangely.