I am trying to learn how to use react-native, so I am putting up a small app that fetch a list of users from a server, displays it in a listview
and where press
Replace code :
this._handlePress()}
style={styles.button}
>
With :
this._handlePress()}
style={styles.button}
navigator={navigator} {...route.props}
>
This is fine:
this.props.navigator.push({
component: ContactDetails,
props: {
title: rowData.name.title,
first: rowData.name.first,
last: rowData.name.last,
}
});