import React, {Component, PropTypes} from 'react'; import { Text, Image, View, ScrollView, TouchableOpacity, StyleSheet, Alert } from 'react-native'; import { connect } from 'react-redux'; import * as counterActions from '../reducers/counter/actions'; // this is a traditional React component connected to the redux store class SecondTabScreen extends Component { static navigatorStyle = { drawUnderNavBar: true, drawUnderTabBar: true, navBarTranslucent: true }; constructor(props) { super(props); this.buttonsCounter = 0; } render() { return ( Here Too: {this.props.counter.count} Increment Counter String prop: {this.props.str} Number prop: {this.props.num} Object prop: {this.props.obj.str} Array prop: {this.props.obj.arr[0].str} Set a button ); } onIncrementPress() { this.props.dispatch(counterActions.increment()); } onSetButton() { this.props.navigator.setButtons({ rightButtons: [ { title: 'Right', icon: require('../../img/navicon_add.png'), id: 'right' } ], leftButtons: [ { title: 'Left', icon: require('../../img/navicon_add.png'), id: 'left' } ] }); this.props.navigator.setOnNavigatorEvent(this.onNavigatorEvent.bind(this)); } onNavigatorEvent(event) { switch (event.id) { case 'left': Alert.alert('NavBar', 'Left button pressed'); break; case 'right': Alert.alert('NavBar', 'Right button pressed'); break; } } } const styles = StyleSheet.create({ text: { textAlign: 'center', fontSize: 18, marginBottom: 10, marginTop:10, }, button: { textAlign: 'center', fontSize: 18, marginBottom: 10, marginTop:10, color: 'blue' } }); // which props do we want to inject, given the global state? function mapStateToProps(state) { return { counter: state.counter }; } export default connect(mapStateToProps)(SecondTabScreen);