- https://github.com/iSimar/HackerNews-React-Native
- https://github.com/jsdf/ReactNativeHackerNews
安裝:
yarn add react-native-navigation@latest
把 react-native-navigation 的 binary 塞進主要專案:
react-native link
- 需要用到的 Component 一定要註冊 - (cf)
- iOS Project 中的 AppDelegate 初期一定要改過:
[[RCCManager sharedInstance] initBridgeWithBundleURL:jsCodeLocation launchOptions:launchOptions];
Navigation.startSingleScreenApp({
screen: {
screen: 'HomeScreen' // 放入註冊 component 時使用的字串
}
});
this.props.navigator.push({
screen: "DetailsScreen", // 放入註冊 component 時使用的字串
});
- Documentation - https://wix.github.io/react-native-navigation/#/top-level-api
- React Native Navigation 導入メモ - https://qiita.com/syon/items/7da3ba6c44a121a390b7