Skip to content

Instantly share code, notes, and snippets.

@PavanKu
Created May 19, 2019 18:50
Show Gist options
  • Save PavanKu/5073c7f44427c169c9623c37210fccfe to your computer and use it in GitHub Desktop.
Save PavanKu/5073c7f44427c169c9623c37210fccfe to your computer and use it in GitHub Desktop.
React Native Button Component
import React from 'react';
import { View, Alert, Button, StyleSheet } from "react-native";
const SimpleButton = (props) => {
return ( <Button style={styles.button} onPress={() => Alert.alert("You pressed button")} title="Click Me"/> );
};
const styles = StyleSheet.create({
button: {
padding: 5,
color: '#000'
}
});
export default SimpleButton;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment