├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.js ├── LICENSE ├── README.md ├── __tests__ └── App.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ ├── fonts │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── Feather.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── Roboto.ttf │ │ │ ├── Roboto_medium.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ ├── Zocial.ttf │ │ │ └── rubicon-icon-font.ttf │ │ ├── index.android.bundle │ │ ├── index.android.bundle.meta │ │ └── index.android.map │ │ ├── java │ │ └── com │ │ │ └── whatsappdownloader │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── drawable-hdpi │ │ └── node_modules_reactnavigation_src_views_assets_backicon.png │ │ ├── drawable-mdpi │ │ ├── node_modules_reactnavigation_src_views_assets_backicon.png │ │ ├── src_images_1.jpg │ │ ├── src_images_2.png │ │ ├── src_images_3.jpg │ │ ├── src_images_4.jpg │ │ └── src_images_5.jpg │ │ ├── drawable-xhdpi │ │ └── node_modules_reactnavigation_src_views_assets_backicon.png │ │ ├── drawable-xxhdpi │ │ └── node_modules_reactnavigation_src_views_assets_backicon.png │ │ ├── drawable-xxxhdpi │ │ └── node_modules_reactnavigation_src_views_assets_backicon.png │ │ ├── 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 ├── app.json ├── index.android.js ├── index.js ├── ios ├── whatsappDownloader-tvOS │ └── Info.plist ├── whatsappDownloader-tvOSTests │ └── Info.plist ├── whatsappDownloader.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── whatsappDownloader-tvOS.xcscheme │ │ └── whatsappDownloader.xcscheme ├── whatsappDownloader │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── whatsappDownloaderTests │ ├── Info.plist │ └── whatsappDownloaderTests.m ├── native-base-theme ├── components │ ├── Badge.js │ ├── Body.js │ ├── Button.js │ ├── Card.js │ ├── CardItem.js │ ├── CheckBox.js │ ├── Container.js │ ├── Content.js │ ├── Fab.js │ ├── Footer.js │ ├── FooterTab.js │ ├── Form.js │ ├── H1.js │ ├── H2.js │ ├── H3.js │ ├── Header.js │ ├── Icon.js │ ├── Input.js │ ├── InputGroup.js │ ├── Item.js │ ├── Label.js │ ├── Left.js │ ├── ListItem.js │ ├── Picker.android.js │ ├── Picker.ios.js │ ├── Radio.js │ ├── Right.js │ ├── Segment.js │ ├── Separator.js │ ├── Spinner.js │ ├── Subtitle.js │ ├── SwipeRow.js │ ├── Switch.js │ ├── Tab.js │ ├── TabBar.js │ ├── TabContainer.js │ ├── TabHeading.js │ ├── Text.js │ ├── Textarea.js │ ├── Thumbnail.js │ ├── Title.js │ ├── Toast.js │ ├── View.js │ └── index.js └── variables │ ├── commonColor.js │ ├── material.js │ └── platform.js ├── package.json ├── src ├── actions │ ├── getStatus.js │ ├── images.js │ └── videos.js ├── components │ ├── AppIntro │ │ ├── slides.js │ │ └── style.js │ ├── Fab │ │ ├── index.js │ │ └── styles.js │ ├── RenderImages │ │ └── index.js │ ├── Splash │ │ ├── index.js │ │ └── styles.js │ └── Status │ │ ├── index.js │ │ └── styles.js ├── constants │ └── index.js ├── containers │ ├── Home │ │ ├── index.js │ │ ├── styles.js │ │ └── videos.js │ ├── NotSaved │ │ ├── index.js │ │ └── styles.js │ ├── Saved │ │ ├── index.js │ │ └── styles.js │ ├── index.js │ └── tabs.js ├── images │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ └── 5.jpg ├── reducers │ ├── getStatus.js │ ├── images.js │ ├── index.js │ ├── nav.js │ └── videos.js ├── stores │ ├── configurestore.dev.js │ ├── configurestore.prod.js │ └── index.js └── utils │ └── helpers.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/.buckconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/App.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/__tests__/App.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/android/app/src/main/assets/fonts/Roboto.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/android/app/src/main/assets/fonts/Roboto_medium.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/rubicon-icon-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/android/app/src/main/assets/fonts/rubicon-icon-font.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/index.android.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/android/app/src/main/assets/index.android.bundle -------------------------------------------------------------------------------- /android/app/src/main/assets/index.android.bundle.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/android/app/src/main/assets/index.android.bundle.meta -------------------------------------------------------------------------------- /android/app/src/main/assets/index.android.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/android/app/src/main/assets/index.android.map -------------------------------------------------------------------------------- /android/app/src/main/java/com/whatsappdownloader/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/android/app/src/main/java/com/whatsappdownloader/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/whatsappdownloader/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/android/app/src/main/java/com/whatsappdownloader/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/node_modules_reactnavigation_src_views_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/android/app/src/main/res/drawable-hdpi/node_modules_reactnavigation_src_views_assets_backicon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/node_modules_reactnavigation_src_views_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/android/app/src/main/res/drawable-mdpi/node_modules_reactnavigation_src_views_assets_backicon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/src_images_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/android/app/src/main/res/drawable-mdpi/src_images_1.jpg -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/src_images_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/android/app/src/main/res/drawable-mdpi/src_images_2.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/src_images_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/android/app/src/main/res/drawable-mdpi/src_images_3.jpg -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/src_images_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/android/app/src/main/res/drawable-mdpi/src_images_4.jpg -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/src_images_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/android/app/src/main/res/drawable-mdpi/src_images_5.jpg -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/node_modules_reactnavigation_src_views_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/android/app/src/main/res/drawable-xhdpi/node_modules_reactnavigation_src_views_assets_backicon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/node_modules_reactnavigation_src_views_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/android/app/src/main/res/drawable-xxhdpi/node_modules_reactnavigation_src_views_assets_backicon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/node_modules_reactnavigation_src_views_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/android/app/src/main/res/drawable-xxxhdpi/node_modules_reactnavigation_src_views_assets_backicon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/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/raheemazeezabiodun/react-native-whatsapp-status-downloader/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/raheemazeezabiodun/react-native-whatsapp-status-downloader/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/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/app.json -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/index.android.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/index.js -------------------------------------------------------------------------------- /ios/whatsappDownloader-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/ios/whatsappDownloader-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/whatsappDownloader-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/ios/whatsappDownloader-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/whatsappDownloader.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/ios/whatsappDownloader.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/whatsappDownloader.xcodeproj/xcshareddata/xcschemes/whatsappDownloader-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/ios/whatsappDownloader.xcodeproj/xcshareddata/xcschemes/whatsappDownloader-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/whatsappDownloader.xcodeproj/xcshareddata/xcschemes/whatsappDownloader.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/ios/whatsappDownloader.xcodeproj/xcshareddata/xcschemes/whatsappDownloader.xcscheme -------------------------------------------------------------------------------- /ios/whatsappDownloader/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/ios/whatsappDownloader/AppDelegate.h -------------------------------------------------------------------------------- /ios/whatsappDownloader/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/ios/whatsappDownloader/AppDelegate.m -------------------------------------------------------------------------------- /ios/whatsappDownloader/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/ios/whatsappDownloader/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/whatsappDownloader/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/ios/whatsappDownloader/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/whatsappDownloader/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/ios/whatsappDownloader/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/whatsappDownloader/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/ios/whatsappDownloader/Info.plist -------------------------------------------------------------------------------- /ios/whatsappDownloader/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/ios/whatsappDownloader/main.m -------------------------------------------------------------------------------- /ios/whatsappDownloaderTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/ios/whatsappDownloaderTests/Info.plist -------------------------------------------------------------------------------- /ios/whatsappDownloaderTests/whatsappDownloaderTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/ios/whatsappDownloaderTests/whatsappDownloaderTests.m -------------------------------------------------------------------------------- /native-base-theme/components/Badge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/components/Badge.js -------------------------------------------------------------------------------- /native-base-theme/components/Body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/components/Body.js -------------------------------------------------------------------------------- /native-base-theme/components/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/components/Button.js -------------------------------------------------------------------------------- /native-base-theme/components/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/components/Card.js -------------------------------------------------------------------------------- /native-base-theme/components/CardItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/components/CardItem.js -------------------------------------------------------------------------------- /native-base-theme/components/CheckBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/components/CheckBox.js -------------------------------------------------------------------------------- /native-base-theme/components/Container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/components/Container.js -------------------------------------------------------------------------------- /native-base-theme/components/Content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/components/Content.js -------------------------------------------------------------------------------- /native-base-theme/components/Fab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/components/Fab.js -------------------------------------------------------------------------------- /native-base-theme/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/components/Footer.js -------------------------------------------------------------------------------- /native-base-theme/components/FooterTab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/components/FooterTab.js -------------------------------------------------------------------------------- /native-base-theme/components/Form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/components/Form.js -------------------------------------------------------------------------------- /native-base-theme/components/H1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/components/H1.js -------------------------------------------------------------------------------- /native-base-theme/components/H2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/components/H2.js -------------------------------------------------------------------------------- /native-base-theme/components/H3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/components/H3.js -------------------------------------------------------------------------------- /native-base-theme/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/components/Header.js -------------------------------------------------------------------------------- /native-base-theme/components/Icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/components/Icon.js -------------------------------------------------------------------------------- /native-base-theme/components/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/components/Input.js -------------------------------------------------------------------------------- /native-base-theme/components/InputGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/components/InputGroup.js -------------------------------------------------------------------------------- /native-base-theme/components/Item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/components/Item.js -------------------------------------------------------------------------------- /native-base-theme/components/Label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/components/Label.js -------------------------------------------------------------------------------- /native-base-theme/components/Left.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/components/Left.js -------------------------------------------------------------------------------- /native-base-theme/components/ListItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/components/ListItem.js -------------------------------------------------------------------------------- /native-base-theme/components/Picker.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/components/Picker.android.js -------------------------------------------------------------------------------- /native-base-theme/components/Picker.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/components/Picker.ios.js -------------------------------------------------------------------------------- /native-base-theme/components/Radio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/components/Radio.js -------------------------------------------------------------------------------- /native-base-theme/components/Right.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/components/Right.js -------------------------------------------------------------------------------- /native-base-theme/components/Segment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/components/Segment.js -------------------------------------------------------------------------------- /native-base-theme/components/Separator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/components/Separator.js -------------------------------------------------------------------------------- /native-base-theme/components/Spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/components/Spinner.js -------------------------------------------------------------------------------- /native-base-theme/components/Subtitle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/components/Subtitle.js -------------------------------------------------------------------------------- /native-base-theme/components/SwipeRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/components/SwipeRow.js -------------------------------------------------------------------------------- /native-base-theme/components/Switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/components/Switch.js -------------------------------------------------------------------------------- /native-base-theme/components/Tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/components/Tab.js -------------------------------------------------------------------------------- /native-base-theme/components/TabBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/components/TabBar.js -------------------------------------------------------------------------------- /native-base-theme/components/TabContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/components/TabContainer.js -------------------------------------------------------------------------------- /native-base-theme/components/TabHeading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/components/TabHeading.js -------------------------------------------------------------------------------- /native-base-theme/components/Text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/components/Text.js -------------------------------------------------------------------------------- /native-base-theme/components/Textarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/components/Textarea.js -------------------------------------------------------------------------------- /native-base-theme/components/Thumbnail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/components/Thumbnail.js -------------------------------------------------------------------------------- /native-base-theme/components/Title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/components/Title.js -------------------------------------------------------------------------------- /native-base-theme/components/Toast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/components/Toast.js -------------------------------------------------------------------------------- /native-base-theme/components/View.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/components/View.js -------------------------------------------------------------------------------- /native-base-theme/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/components/index.js -------------------------------------------------------------------------------- /native-base-theme/variables/commonColor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/variables/commonColor.js -------------------------------------------------------------------------------- /native-base-theme/variables/material.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/variables/material.js -------------------------------------------------------------------------------- /native-base-theme/variables/platform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/native-base-theme/variables/platform.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/package.json -------------------------------------------------------------------------------- /src/actions/getStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/src/actions/getStatus.js -------------------------------------------------------------------------------- /src/actions/images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/src/actions/images.js -------------------------------------------------------------------------------- /src/actions/videos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/src/actions/videos.js -------------------------------------------------------------------------------- /src/components/AppIntro/slides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/src/components/AppIntro/slides.js -------------------------------------------------------------------------------- /src/components/AppIntro/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/src/components/AppIntro/style.js -------------------------------------------------------------------------------- /src/components/Fab/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/src/components/Fab/index.js -------------------------------------------------------------------------------- /src/components/Fab/styles.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/RenderImages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/src/components/RenderImages/index.js -------------------------------------------------------------------------------- /src/components/Splash/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/src/components/Splash/index.js -------------------------------------------------------------------------------- /src/components/Splash/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/src/components/Splash/styles.js -------------------------------------------------------------------------------- /src/components/Status/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/src/components/Status/index.js -------------------------------------------------------------------------------- /src/components/Status/styles.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/constants/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/src/constants/index.js -------------------------------------------------------------------------------- /src/containers/Home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/src/containers/Home/index.js -------------------------------------------------------------------------------- /src/containers/Home/styles.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/containers/Home/videos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/src/containers/Home/videos.js -------------------------------------------------------------------------------- /src/containers/NotSaved/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/src/containers/NotSaved/index.js -------------------------------------------------------------------------------- /src/containers/NotSaved/styles.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/containers/Saved/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/src/containers/Saved/index.js -------------------------------------------------------------------------------- /src/containers/Saved/styles.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/containers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/src/containers/index.js -------------------------------------------------------------------------------- /src/containers/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/src/containers/tabs.js -------------------------------------------------------------------------------- /src/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/src/images/1.jpg -------------------------------------------------------------------------------- /src/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/src/images/2.jpg -------------------------------------------------------------------------------- /src/images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/src/images/3.jpg -------------------------------------------------------------------------------- /src/images/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/src/images/4.jpg -------------------------------------------------------------------------------- /src/images/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/src/images/5.jpg -------------------------------------------------------------------------------- /src/reducers/getStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/src/reducers/getStatus.js -------------------------------------------------------------------------------- /src/reducers/images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/src/reducers/images.js -------------------------------------------------------------------------------- /src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/src/reducers/index.js -------------------------------------------------------------------------------- /src/reducers/nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/src/reducers/nav.js -------------------------------------------------------------------------------- /src/reducers/videos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/src/reducers/videos.js -------------------------------------------------------------------------------- /src/stores/configurestore.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/src/stores/configurestore.dev.js -------------------------------------------------------------------------------- /src/stores/configurestore.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/src/stores/configurestore.prod.js -------------------------------------------------------------------------------- /src/stores/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/src/stores/index.js -------------------------------------------------------------------------------- /src/utils/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/src/utils/helpers.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raheemazeezabiodun/react-native-whatsapp-status-downloader/HEAD/yarn.lock --------------------------------------------------------------------------------