“Cómo verificar para ingresar KeyPress en React Native” Código de respuesta

reaccionar detectar la tecla Intro

var Input = React.createClass({
  render: function () {
    return <input type="text" onKeyDown={this._handleKeyDown} />;
  },
  _handleKeyDown: function(e) {
    if (e.key === 'Enter') {
      console.log('do validate');
    }
  }
});
Glorious Grivet

Cómo verificar para ingresar KeyPress en React Native

var Input = React.createClass({
  render: function () {
    return <input type="text" onKeyDown={this._handleKeyDown} />;
  },
  _handleKeyDown: function(e) {
    if (e.key === 'Enter') {
      console.log('do validate');
    }
  }
});

//inline
onSubmitEditing={"enter key pressed"}
Uninterested Unicorn

Respuestas similares a “Cómo verificar para ingresar KeyPress en React Native”

Preguntas similares a “Cómo verificar para ingresar KeyPress en React Native”

Más respuestas relacionadas con “Cómo verificar para ingresar KeyPress en React Native” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código