Fixed crash on login input change

这个提交包含在:
Arnaud Vergnet 2020-06-29 16:02:25 +02:00
父节点 b66e50eaf8
当前提交 98168b560b

查看文件

@ -56,6 +56,7 @@ class LoginScreen extends React.Component<Props, State> {
constructor(props) {
super(props);
this.passwordInputRef = React.createRef();
this.onEmailChange = this.onInputChange.bind(this, true);
this.onPasswordChange = this.onInputChange.bind(this, false);
this.props.navigation.addListener('focus', this.onScreenFocus);