El estilo React-Native Button no funciona

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

Este es el código de mi botón Reaccionar Pero el estilo no funciona Liebre ...

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

También fui probado 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>
Actualización Pregunta:

También fui probado de esta manera ..

<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'
    }
});

Pero sin salida: captura de pantalla de mi teléfono: -

Respuestas a la pregunta(7)

Su respuesta a la pregunta