O estilo React-Native Button não funciona

Import_this
import {AppRegistry, Text, View, Button, StyleSheet} from 'react-native';

Este código do meu botão React Mas o estilo não está funcionando Hare ...

<Button
  onPress={this.onPress.bind(this)} 
  title={"Go Back"}
  style={{color: 'red', marginTop: 10, padding: 10}}
/>

Também tentei por este código

<Button 
       containerStyle={{padding:10, height:45, overflow:'hidden', 
       borderRadius:4, backgroundColor: 'white'}}
       style={{fontSize: 20, color: 'green'}} 
       onPress={this.onPress.bind(this)} title={"Go Back"}
      > Press me!
</Button>
Update Question:

Também fui tentar dessa maneira ..

<Button
    onPress={this.onPress.bind(this)}
    title={"Go Back"}
    style={styles.buttonStyle}
>ku ka</Button>
Estil
const styles = StyleSheet.create({
    buttonStyle: {
        color: 'red',
        marginTop: 20,
        padding: 20,
        backgroundColor: 'green'
    }
});

Mas não colocar: Screenshot do meu telefone: -

questionAnswers(7)

yourAnswerToTheQuestion