├── .buckconfig ├── .eslintrc.json ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── README.MD ├── __tests__ └── App.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── debug.keystore.old │ ├── my-release-key.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── rn0632 │ │ │ └── ReactNativeFlipper.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── appstoretoday │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.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 ├── app.json ├── babel.config.js ├── index.js ├── ios ├── AppStoreToday-Bridging-Header.h ├── AppStoreToday.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── AppStoreToday.xcscheme ├── AppStoreToday.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── AppStoreToday │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ └── main.m ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ ├── React.podspec.json │ │ └── yoga.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ └── Pods-AppStoreToday │ │ ├── Pods-AppStoreToday-acknowledgements.markdown │ │ ├── Pods-AppStoreToday-acknowledgements.plist │ │ ├── Pods-AppStoreToday-dummy.m │ │ ├── Pods-AppStoreToday-resources.sh │ │ ├── Pods-AppStoreToday.debug.xcconfig │ │ └── Pods-AppStoreToday.release.xcconfig └── bridgeForSwift.swift ├── metro.config.js ├── package.json ├── src ├── App.js ├── FakeData.js ├── assets │ ├── icon │ │ ├── close.png │ │ ├── close_white.png │ │ └── profile.png │ └── images │ │ ├── item-1-1.jpg │ │ ├── item-1-2.jpg │ │ ├── item-1.jpg │ │ ├── item-2-1.jpg │ │ ├── item-2.jpg │ │ ├── item-3-1.jpg │ │ ├── item-3-2.jpg │ │ ├── item-3-app.jpg │ │ └── item-3.jpg ├── common │ ├── MobX.js │ ├── Platform.js │ ├── StatusBar.js │ ├── StyleSheet.js │ ├── Text.js │ └── index.js ├── components │ ├── TodayCardContent.js │ ├── TodayCardContentDownload.js │ ├── TodayCardContentText.js │ ├── TodayCardImage.js │ ├── TodayCardImageText.js │ ├── TodayDetailCardClose.js │ ├── TodayDetailCardContent.js │ ├── TodayDetailCardFloatingDownload.js │ ├── TodayDetailCardImage.js │ ├── TodayListHeader.js │ └── index.js ├── containers │ ├── TodayDetailCard.js │ ├── TodayDimmedLayer.js │ ├── TodayList.js │ └── index.js ├── screens │ ├── TodayScreen.js │ └── index.js ├── stores │ ├── TodayDetailCardStore.js │ ├── TodayStore.js │ ├── export.js │ └── index.js ├── templates │ ├── TodayListCard.js │ └── index.js ├── types │ ├── index.js │ └── today.js └── utils │ ├── CardInfo.js │ └── index.js └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/README.MD -------------------------------------------------------------------------------- /__tests__/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/__tests__/App.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/debug.keystore.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/android/app/debug.keystore.old -------------------------------------------------------------------------------- /android/app/my-release-key.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/android/app/my-release-key.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/java/com/rn0632/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/android/app/src/debug/java/com/rn0632/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/appstoretoday/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/android/app/src/main/java/com/appstoretoday/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/appstoretoday/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/android/app/src/main/java/com/appstoretoday/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/index.js -------------------------------------------------------------------------------- /ios/AppStoreToday-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/ios/AppStoreToday-Bridging-Header.h -------------------------------------------------------------------------------- /ios/AppStoreToday.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/ios/AppStoreToday.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/AppStoreToday.xcodeproj/xcshareddata/xcschemes/AppStoreToday.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/ios/AppStoreToday.xcodeproj/xcshareddata/xcschemes/AppStoreToday.xcscheme -------------------------------------------------------------------------------- /ios/AppStoreToday.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/ios/AppStoreToday.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/AppStoreToday.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/ios/AppStoreToday.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/AppStoreToday/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/ios/AppStoreToday/AppDelegate.h -------------------------------------------------------------------------------- /ios/AppStoreToday/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/ios/AppStoreToday/AppDelegate.m -------------------------------------------------------------------------------- /ios/AppStoreToday/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/ios/AppStoreToday/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/AppStoreToday/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/ios/AppStoreToday/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/AppStoreToday/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/ios/AppStoreToday/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/AppStoreToday/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/ios/AppStoreToday/Info.plist -------------------------------------------------------------------------------- /ios/AppStoreToday/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/ios/AppStoreToday/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/AppStoreToday/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/ios/AppStoreToday/main.m -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Pods/Local Podspecs/React.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/ios/Pods/Local Podspecs/React.podspec.json -------------------------------------------------------------------------------- /ios/Pods/Local Podspecs/yoga.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/ios/Pods/Local Podspecs/yoga.podspec.json -------------------------------------------------------------------------------- /ios/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/ios/Pods/Manifest.lock -------------------------------------------------------------------------------- /ios/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/ios/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/Pods-AppStoreToday/Pods-AppStoreToday-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/ios/Pods/Target Support Files/Pods-AppStoreToday/Pods-AppStoreToday-acknowledgements.markdown -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/Pods-AppStoreToday/Pods-AppStoreToday-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/ios/Pods/Target Support Files/Pods-AppStoreToday/Pods-AppStoreToday-acknowledgements.plist -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/Pods-AppStoreToday/Pods-AppStoreToday-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/ios/Pods/Target Support Files/Pods-AppStoreToday/Pods-AppStoreToday-dummy.m -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/Pods-AppStoreToday/Pods-AppStoreToday-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/ios/Pods/Target Support Files/Pods-AppStoreToday/Pods-AppStoreToday-resources.sh -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/Pods-AppStoreToday/Pods-AppStoreToday.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/ios/Pods/Target Support Files/Pods-AppStoreToday/Pods-AppStoreToday.debug.xcconfig -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/Pods-AppStoreToday/Pods-AppStoreToday.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/ios/Pods/Target Support Files/Pods-AppStoreToday/Pods-AppStoreToday.release.xcconfig -------------------------------------------------------------------------------- /ios/bridgeForSwift.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/ios/bridgeForSwift.swift -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/package.json -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/src/App.js -------------------------------------------------------------------------------- /src/FakeData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/src/FakeData.js -------------------------------------------------------------------------------- /src/assets/icon/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/src/assets/icon/close.png -------------------------------------------------------------------------------- /src/assets/icon/close_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/src/assets/icon/close_white.png -------------------------------------------------------------------------------- /src/assets/icon/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/src/assets/icon/profile.png -------------------------------------------------------------------------------- /src/assets/images/item-1-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/src/assets/images/item-1-1.jpg -------------------------------------------------------------------------------- /src/assets/images/item-1-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/src/assets/images/item-1-2.jpg -------------------------------------------------------------------------------- /src/assets/images/item-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/src/assets/images/item-1.jpg -------------------------------------------------------------------------------- /src/assets/images/item-2-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/src/assets/images/item-2-1.jpg -------------------------------------------------------------------------------- /src/assets/images/item-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/src/assets/images/item-2.jpg -------------------------------------------------------------------------------- /src/assets/images/item-3-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/src/assets/images/item-3-1.jpg -------------------------------------------------------------------------------- /src/assets/images/item-3-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/src/assets/images/item-3-2.jpg -------------------------------------------------------------------------------- /src/assets/images/item-3-app.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/src/assets/images/item-3-app.jpg -------------------------------------------------------------------------------- /src/assets/images/item-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/src/assets/images/item-3.jpg -------------------------------------------------------------------------------- /src/common/MobX.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/src/common/MobX.js -------------------------------------------------------------------------------- /src/common/Platform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/src/common/Platform.js -------------------------------------------------------------------------------- /src/common/StatusBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/src/common/StatusBar.js -------------------------------------------------------------------------------- /src/common/StyleSheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/src/common/StyleSheet.js -------------------------------------------------------------------------------- /src/common/Text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/src/common/Text.js -------------------------------------------------------------------------------- /src/common/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/src/common/index.js -------------------------------------------------------------------------------- /src/components/TodayCardContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/src/components/TodayCardContent.js -------------------------------------------------------------------------------- /src/components/TodayCardContentDownload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/src/components/TodayCardContentDownload.js -------------------------------------------------------------------------------- /src/components/TodayCardContentText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/src/components/TodayCardContentText.js -------------------------------------------------------------------------------- /src/components/TodayCardImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/src/components/TodayCardImage.js -------------------------------------------------------------------------------- /src/components/TodayCardImageText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/src/components/TodayCardImageText.js -------------------------------------------------------------------------------- /src/components/TodayDetailCardClose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/src/components/TodayDetailCardClose.js -------------------------------------------------------------------------------- /src/components/TodayDetailCardContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/src/components/TodayDetailCardContent.js -------------------------------------------------------------------------------- /src/components/TodayDetailCardFloatingDownload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/src/components/TodayDetailCardFloatingDownload.js -------------------------------------------------------------------------------- /src/components/TodayDetailCardImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/src/components/TodayDetailCardImage.js -------------------------------------------------------------------------------- /src/components/TodayListHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/src/components/TodayListHeader.js -------------------------------------------------------------------------------- /src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/src/components/index.js -------------------------------------------------------------------------------- /src/containers/TodayDetailCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/src/containers/TodayDetailCard.js -------------------------------------------------------------------------------- /src/containers/TodayDimmedLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/src/containers/TodayDimmedLayer.js -------------------------------------------------------------------------------- /src/containers/TodayList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/src/containers/TodayList.js -------------------------------------------------------------------------------- /src/containers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/src/containers/index.js -------------------------------------------------------------------------------- /src/screens/TodayScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/src/screens/TodayScreen.js -------------------------------------------------------------------------------- /src/screens/index.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | export * from './TodayScreen'; 4 | -------------------------------------------------------------------------------- /src/stores/TodayDetailCardStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/src/stores/TodayDetailCardStore.js -------------------------------------------------------------------------------- /src/stores/TodayStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/src/stores/TodayStore.js -------------------------------------------------------------------------------- /src/stores/export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/src/stores/export.js -------------------------------------------------------------------------------- /src/stores/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/src/stores/index.js -------------------------------------------------------------------------------- /src/templates/TodayListCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/src/templates/TodayListCard.js -------------------------------------------------------------------------------- /src/templates/index.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | export * from './TodayListCard'; 4 | -------------------------------------------------------------------------------- /src/types/index.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | export * from './today'; 4 | -------------------------------------------------------------------------------- /src/types/today.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/src/types/today.js -------------------------------------------------------------------------------- /src/utils/CardInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/src/utils/CardInfo.js -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | export * from './CardInfo'; 4 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifsnow/AppStoreToday/HEAD/yarn.lock --------------------------------------------------------------------------------