Slide 15
Slide 15 text
var ToastButton = React.createClass({
propTypes: {
text: React.PropTypes.string.isRequired,
},
render: function () {
return (
ToastAndroid.show(`Your input is ${this.props.text}`, ToastAndroid.SHORT)}
background={TouchableNativeFeedback.SelectableBackground()}
style={styles.toastButton}>
Tap me
);
},
});