I am using ListView, each Item of ListView is TouchableOpacity component. onPress I need to navigate to another page. So onPress method I call _navigator(). But when I press on Item (TouchableOpacity element) its hangs on several seconds about 4-5s. Here an example of my code.
rerenderRow(row, rowID, tabId) {
<TouchableOpacity style={styles.element} onPress={() => this._navigate('NewPage', row)}>
<View>----</View>
</TouchableOpacity>
}
How can I fix this issue ?