Closed
Description
Using TextInput from 'react-native'
onChangeText fires when iOS "Use Strong Password" is prompted.
However if user clicks "Choose My Own Password", the TextInput value is cleared (by iOS) and the onChangeText is not fired (again).
Therefore, using code like this:
onChangeText={(text) => this.setState({ password: text })}
will not reset this.state.password to '' or undefined or null