Skip to content

Instantly share code, notes, and snippets.

@viniciusdacal
Last active February 14, 2017 18:06
Show Gist options
  • Select an option

  • Save viniciusdacal/cc06f0a0c6429de834e36b41186c3ef9 to your computer and use it in GitHub Desktop.

Select an option

Save viniciusdacal/cc06f0a0c6429de834e36b41186c3ef9 to your computer and use it in GitHub Desktop.
import React from 'react';
import { Text, TouchableHighlight } from 'react-native';
class MyButton extends Component {
_onPressButton() {
console.log('You tapped the button!');
}
render() {
return (
<TouchableHighlight onPress={this._onPressButton}>
<Text>Button</Text>
</TouchableHighlight>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment