React Navigation 問題 - fantasy0107/notes GitHub Wiki
問題
如果是在不同的 stack 直接跳過去會沒有返回鍵
其它
安裝
yarn add react-navigation
React Navigation 丟參數到 route
//丟參數
this.props.navigation.navigate(
'RouteName',
{
itemId: 86,
otherParam: 'anything you want here',
}//parameter
);
//取得參數
const { navigation } = this.props;
const itemId = navigation.getParam('itemId', 'NO-ID');
在 navigate 的時候會將 stack 裡的所有 screen 全跑過所以會觸發 componentDidMount ...
createBottomTabNavigator 不知道為什麼選擇選項時會掛掉
解法是清掉所有 console.log()