
All of these text inputs are
<TextInput
onChange={handleNameChange}
returnKeyType='done'
placeholder='First Last'
value={dot.name}
header={renderHeaderForField('My name is')}
underlineColorAndroid='transparent'
autoCorrect={true}
/>
the first one works as expected in the simulator, but the second set (which are displayed in a react-navigation modal, if relevant) have odd behavior when the hardware keyboard is connected; looks like the keyboardWillHide event is immediately. Disconnecting the hardware keyboard fixes the behavior, as well as collapseOnKeyboardHide={false}.
So this isn't really a big deal at the moment, but might be an issue if someone has a bluetooth keyboard attached? I don't have time to produce a standalone reproduction at the moment, but will keep playing with it on my end.
All of these text inputs are
the first one works as expected in the simulator, but the second set (which are displayed in a react-navigation modal, if relevant) have odd behavior when the hardware keyboard is connected; looks like the
keyboardWillHideevent is immediately. Disconnecting the hardware keyboard fixes the behavior, as well ascollapseOnKeyboardHide={false}.So this isn't really a big deal at the moment, but might be an issue if someone has a bluetooth keyboard attached? I don't have time to produce a standalone reproduction at the moment, but will keep playing with it on my end.