in response-native, как изменить стили NavigatorIOS, например backgroundColor? спасибо!
var speedNews = React.createClass({
render: function() {
return (
<NavigatorIOS style={styles.container}
initialRoute={{
title: 'SpeedNews',
component: ViewList
}}/>
);
}
});
var styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor : 'red', // it do nothing
color : '#ffffff' // it do nothing
}
});