0
當我嘗試去另一頁我不斷收到此錯誤
goToMenu(){
this.props.navigator.push({
component: Menu,
title: 'Main Menu',
passProps: {navigator: this.props.navigator},
})
}
<View style={styles.mainContainer}>
<TouchableHighlight
style={styles.menuButton}
onPress={this.goToMenu.bind(this)}>
<Text style={styles.buttonText}> Go To Menu </Text>
</TouchableHighlight>
</View>
元素類型無效預期字符串(內置組件)或複合組件的類/函數,但得到對象檢查'navigatorios'的渲染方法
'Menu'組件有問題,你能附上它的代碼嗎? – Cherniv