├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitignore ├── .watchmanconfig ├── LICENSE ├── README.md ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ └── Zocial.ttf │ │ ├── java │ │ └── com │ │ │ └── rndemo │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── index.android.js ├── index.ios.js ├── ios ├── RNDemo.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── RNDemo.xcscheme ├── RNDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── RNDemoTests │ ├── Info.plist │ └── RNDemoTests.m ├── package.json └── src ├── App.js ├── Root.js ├── actions └── route.js ├── components ├── GetIcon.js └── NavBar.js ├── constants ├── ActionTypes.js ├── AppSessionState.js ├── StorageKeys.js └── buildVar.js ├── containers ├── Day10Scene.js ├── Day11Scene.js ├── Day12Scene.js ├── Day13Scene.js ├── Day14Scene.js ├── Day15Scene.js ├── Day16Scene.js ├── Day17Scene.js ├── Day18Scene.js ├── Day19Scene.js ├── Day1Scene.js ├── Day20Scene.js ├── Day21Scene.js ├── Day22Scene.js ├── Day23Scene.js ├── Day24Scene.js ├── Day25Scene.js ├── Day26Scene.js ├── Day27Scene.js ├── Day28Scene.js ├── Day29Scene.js ├── Day2Scene.js ├── Day30Scene.js ├── Day3Scene.js ├── Day4Scene.js ├── Day5Scene.js ├── Day6Scene.js ├── Day7Scene.js ├── Day8Scene.js ├── Day9Scene.js ├── EntryScene.js ├── LogsScene.js └── TopicScene.js ├── reducers ├── index.js └── route.js ├── routers ├── base.js ├── home.js ├── index.js └── topics.js ├── store └── configureStore.js └── utils ├── createReducer.js ├── navigatorHelper.js └── sessionManager.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | "react-native" 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/.buckconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/README.md -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/rndemo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/android/app/src/main/java/com/rndemo/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/rndemo/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/android/app/src/main/java/com/rndemo/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/index.android.js -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/index.ios.js -------------------------------------------------------------------------------- /ios/RNDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/ios/RNDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/RNDemo.xcodeproj/xcshareddata/xcschemes/RNDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/ios/RNDemo.xcodeproj/xcshareddata/xcschemes/RNDemo.xcscheme -------------------------------------------------------------------------------- /ios/RNDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/ios/RNDemo/AppDelegate.h -------------------------------------------------------------------------------- /ios/RNDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/ios/RNDemo/AppDelegate.m -------------------------------------------------------------------------------- /ios/RNDemo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/ios/RNDemo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/RNDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/ios/RNDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/RNDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/ios/RNDemo/Info.plist -------------------------------------------------------------------------------- /ios/RNDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/ios/RNDemo/main.m -------------------------------------------------------------------------------- /ios/RNDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/ios/RNDemoTests/Info.plist -------------------------------------------------------------------------------- /ios/RNDemoTests/RNDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/ios/RNDemoTests/RNDemoTests.m -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/package.json -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/App.js -------------------------------------------------------------------------------- /src/Root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/Root.js -------------------------------------------------------------------------------- /src/actions/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/actions/route.js -------------------------------------------------------------------------------- /src/components/GetIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/components/GetIcon.js -------------------------------------------------------------------------------- /src/components/NavBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/components/NavBar.js -------------------------------------------------------------------------------- /src/constants/ActionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/constants/ActionTypes.js -------------------------------------------------------------------------------- /src/constants/AppSessionState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/constants/AppSessionState.js -------------------------------------------------------------------------------- /src/constants/StorageKeys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/constants/StorageKeys.js -------------------------------------------------------------------------------- /src/constants/buildVar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/constants/buildVar.js -------------------------------------------------------------------------------- /src/containers/Day10Scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/containers/Day10Scene.js -------------------------------------------------------------------------------- /src/containers/Day11Scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/containers/Day11Scene.js -------------------------------------------------------------------------------- /src/containers/Day12Scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/containers/Day12Scene.js -------------------------------------------------------------------------------- /src/containers/Day13Scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/containers/Day13Scene.js -------------------------------------------------------------------------------- /src/containers/Day14Scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/containers/Day14Scene.js -------------------------------------------------------------------------------- /src/containers/Day15Scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/containers/Day15Scene.js -------------------------------------------------------------------------------- /src/containers/Day16Scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/containers/Day16Scene.js -------------------------------------------------------------------------------- /src/containers/Day17Scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/containers/Day17Scene.js -------------------------------------------------------------------------------- /src/containers/Day18Scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/containers/Day18Scene.js -------------------------------------------------------------------------------- /src/containers/Day19Scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/containers/Day19Scene.js -------------------------------------------------------------------------------- /src/containers/Day1Scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/containers/Day1Scene.js -------------------------------------------------------------------------------- /src/containers/Day20Scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/containers/Day20Scene.js -------------------------------------------------------------------------------- /src/containers/Day21Scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/containers/Day21Scene.js -------------------------------------------------------------------------------- /src/containers/Day22Scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/containers/Day22Scene.js -------------------------------------------------------------------------------- /src/containers/Day23Scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/containers/Day23Scene.js -------------------------------------------------------------------------------- /src/containers/Day24Scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/containers/Day24Scene.js -------------------------------------------------------------------------------- /src/containers/Day25Scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/containers/Day25Scene.js -------------------------------------------------------------------------------- /src/containers/Day26Scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/containers/Day26Scene.js -------------------------------------------------------------------------------- /src/containers/Day27Scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/containers/Day27Scene.js -------------------------------------------------------------------------------- /src/containers/Day28Scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/containers/Day28Scene.js -------------------------------------------------------------------------------- /src/containers/Day29Scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/containers/Day29Scene.js -------------------------------------------------------------------------------- /src/containers/Day2Scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/containers/Day2Scene.js -------------------------------------------------------------------------------- /src/containers/Day30Scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/containers/Day30Scene.js -------------------------------------------------------------------------------- /src/containers/Day3Scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/containers/Day3Scene.js -------------------------------------------------------------------------------- /src/containers/Day4Scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/containers/Day4Scene.js -------------------------------------------------------------------------------- /src/containers/Day5Scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/containers/Day5Scene.js -------------------------------------------------------------------------------- /src/containers/Day6Scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/containers/Day6Scene.js -------------------------------------------------------------------------------- /src/containers/Day7Scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/containers/Day7Scene.js -------------------------------------------------------------------------------- /src/containers/Day8Scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/containers/Day8Scene.js -------------------------------------------------------------------------------- /src/containers/Day9Scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/containers/Day9Scene.js -------------------------------------------------------------------------------- /src/containers/EntryScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/containers/EntryScene.js -------------------------------------------------------------------------------- /src/containers/LogsScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/containers/LogsScene.js -------------------------------------------------------------------------------- /src/containers/TopicScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/containers/TopicScene.js -------------------------------------------------------------------------------- /src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/reducers/index.js -------------------------------------------------------------------------------- /src/reducers/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/reducers/route.js -------------------------------------------------------------------------------- /src/routers/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/routers/base.js -------------------------------------------------------------------------------- /src/routers/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/routers/home.js -------------------------------------------------------------------------------- /src/routers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/routers/index.js -------------------------------------------------------------------------------- /src/routers/topics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/routers/topics.js -------------------------------------------------------------------------------- /src/store/configureStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/store/configureStore.js -------------------------------------------------------------------------------- /src/utils/createReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/utils/createReducer.js -------------------------------------------------------------------------------- /src/utils/navigatorHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/utils/navigatorHelper.js -------------------------------------------------------------------------------- /src/utils/sessionManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horsekitlin/ReactNativeDemo/HEAD/src/utils/sessionManager.js --------------------------------------------------------------------------------