Стиль React-Native Button не работает

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

Это мой код кнопки реагирования, но стиль не работает, заяц ...

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

Я тоже попробовал этот код

<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>
Обновление вопроса:

Так меня тоже попробовали ..

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

Но нет выхода: Снимок экрана моего телефона: -

Ответы на вопрос(7)

Ваш ответ на вопрос