Ошибка типа: null не является объектом (оценка ‘_this2.emailRef.current.focus — Как автофокусировать поле ввода при открытии экрана
#javascript #reactjs #react-native #input #focus Вопрос: class Signin constructor(props) { super(props); this.emailRef = React.createRef(); this.passwordRef = React.createRef(); this.focusTextInput = this.focusTextInput.bind(this); this.login = this.login.bind(this); } focusTextInput=()=>{ this.passwordRef.current.focus() } componentDidMount=()=> { //…