Unable to focus KeyboardExtendedInput on Android on Expo 53 / React Native 0.79. #93
-
After upgrading our app we no longer receive focus when tapping the Using 0.6.1 with Expo 53.0.20 and React Native 0.79.5. Example code: <View style={styles.container}>
<Text>First name</Text>
<TextInput style={{ borderWidth: 1, borderColor: 'hotpink' }} value={firstName} onChangeText={setFirstName} multiline />
<StatusBar style="auto" />
</View> Anyone else run into this? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hello @pehagg, Additionally, I think you could consider migrating from I created an issue based on the discussion and am going to fix it as part of that. |
Beta Was this translation helpful? Give feedback.
Hello @pehagg,
It seems that Meta has fixed the issue with TextInput in React Native 0.80.x. About a month ago, they also released a fix for version 0.79.5. I’ve already made some updates for 0.80.x, but it looks like these updates should also be applied to 0.79.5.
Additionally, I think you could consider migrating from
KeyboardExtendedInput
to the defaultTextInput
, as it appears to work fine with the keyboard so far.I created an issue based on the discussion and am going to fix it as part of that.