Skip to content

Instantly share code, notes, and snippets.

@rajatgeekyants
Created August 4, 2017 07:09
Show Gist options
  • Save rajatgeekyants/b814bec94447ca570fce1c0717e37243 to your computer and use it in GitHub Desktop.
Save rajatgeekyants/b814bec94447ca570fce1c0717e37243 to your computer and use it in GitHub Desktop.
class Button extends React.Component {
render() {
return (
<TouchableOpacity
style={{
backgroundColor: "blue",
padding: 20,
borderRadius: 50
}}
>
<Text
style={{
color: "white",
fontSize: 20
}}
>
</Text>
</TouchableOpacity>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment