1The react Button component renders the native button on each platform it uses. Because of this, it does not respond to the style prop. It has its own set of props.
2
3The correct way to use it would have been
4
5<Button color="#ff5c5c" title="I'm a button!" />
6
7You can see the documentation at https://facebook.github.io/react-native/docs/button.html
8
9Now, say you do want to make super customizable button, for that you'll have to use views and touchable opacity. Something along the lines of this.
10
11<TouchableOpacity onPress={...}>
12 {... button markup}
13</TouchableOpacity>
14You'll wrap that up in your own button component and use it.