“React Botón nativo” Código de respuesta

Cómo agregar botón react nativo App.js

var tapSpeed = React.createClass({
  render: function() {
    return (
      <View style={styles.container}>
        <Text style={styles.welcome}>
          Tap me as fast as you can!
        </Text>
        <View style={styles.button}>
        !
        </View>
      </View>
    );
  }
});

var styles = StyleSheet.create({
  container: {
    flex: 1,
    justifyContent: 'center',
    alignItems: 'center',
    backgroundColor: '#FFCCCC'
  },
  welcome: {
    fontSize: 20,
    textAlign: 'center',
    margin: 10
  },
  button: {
    textAlign: 'center',
    color: '#ffffff',
    marginBottom: 7,
    border: 1px solid blue,
    borderRadius: 2px
  }
});
Encouraging Eel

React Botón nativo

<Button
  onPress={onPressLearnMore}
  title="Learn More"
  color="#841584"
  accessibilityLabel="Learn more about this purple button"
/>
hamzah

Respuestas similares a “React Botón nativo”

Preguntas similares a “React Botón nativo”

Más respuestas relacionadas con “React Botón nativo” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código