Fixed crash on login input change
這個提交存在於:
父節點
b66e50eaf8
當前提交
98168b560b
共有 1 個檔案被更改,包括 1 行新增 和 0 行删除
|
|
@ -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);
|
||||
|
|
|
|||
載入中…
新增問題並參考