├── .circleci └── config.yml ├── .eslintrc.js ├── .gitattributes ├── .github └── images │ └── example.gif ├── .gitignore ├── .npmignore ├── .prettierrc.js ├── .releaserc ├── LICENSE.md ├── README.md ├── example ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.tsx ├── __tests__ │ └── App-test.js ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── shareexample │ │ │ │ ├── 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 │ └── settings.gradle ├── app.json ├── babel.config.js ├── index.js ├── ios │ ├── Podfile │ ├── Podfile.lock │ ├── ShareExample-tvOS │ │ └── Info.plist │ ├── ShareExample-tvOSTests │ │ └── Info.plist │ ├── ShareExample.xcodeproj │ │ └── project.pbxproj │ ├── ShareExample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── ShareExampleTests │ │ ├── Info.plist │ │ └── ShareExampleTests.m ├── metro.config.js ├── package.json ├── patches │ └── react-native-view-shot+3.0.2.patch ├── src │ ├── Navigator.tsx │ └── pages │ │ ├── HomePage.tsx │ │ ├── ShareText │ │ ├── TextContent.tsx │ │ ├── TextPage.tsx │ │ └── TextSharePage.tsx │ │ └── ShareWebView │ │ ├── WebViewContent.tsx │ │ ├── WebViewPage.tsx │ │ └── WebViewSharePage.tsx ├── tsconfig.json └── yarn.lock ├── package.json ├── src ├── Loading.tsx ├── ShareBar.tsx ├── ShareBarItem.tsx ├── ShareView.tsx ├── constants.ts └── index.ts ├── tsconfig.json └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text -------------------------------------------------------------------------------- /.github/images/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/.github/images/example.gif -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | example/ 2 | src -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.releaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/.releaserc -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/README.md -------------------------------------------------------------------------------- /example/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/.buckconfig -------------------------------------------------------------------------------- /example/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/.flowconfig -------------------------------------------------------------------------------- /example/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /example/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/App.tsx -------------------------------------------------------------------------------- /example/__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/__tests__/App-test.js -------------------------------------------------------------------------------- /example/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/android/app/BUCK -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/android/app/build_defs.bzl -------------------------------------------------------------------------------- /example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/android/app/debug.keystore -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/shareexample/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/android/app/src/main/java/com/shareexample/MainActivity.java -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/shareexample/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/android/app/src/main/java/com/shareexample/MainApplication.java -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/app.json -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/index.js -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/ios/ShareExample-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/ios/ShareExample-tvOS/Info.plist -------------------------------------------------------------------------------- /example/ios/ShareExample-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/ios/ShareExample-tvOSTests/Info.plist -------------------------------------------------------------------------------- /example/ios/ShareExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/ios/ShareExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/ShareExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/ios/ShareExample/AppDelegate.h -------------------------------------------------------------------------------- /example/ios/ShareExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/ios/ShareExample/AppDelegate.m -------------------------------------------------------------------------------- /example/ios/ShareExample/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/ios/ShareExample/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /example/ios/ShareExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/ios/ShareExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/ShareExample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/ios/ShareExample/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /example/ios/ShareExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/ios/ShareExample/Info.plist -------------------------------------------------------------------------------- /example/ios/ShareExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/ios/ShareExample/main.m -------------------------------------------------------------------------------- /example/ios/ShareExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/ios/ShareExampleTests/Info.plist -------------------------------------------------------------------------------- /example/ios/ShareExampleTests/ShareExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/ios/ShareExampleTests/ShareExampleTests.m -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/package.json -------------------------------------------------------------------------------- /example/patches/react-native-view-shot+3.0.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/patches/react-native-view-shot+3.0.2.patch -------------------------------------------------------------------------------- /example/src/Navigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/src/Navigator.tsx -------------------------------------------------------------------------------- /example/src/pages/HomePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/src/pages/HomePage.tsx -------------------------------------------------------------------------------- /example/src/pages/ShareText/TextContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/src/pages/ShareText/TextContent.tsx -------------------------------------------------------------------------------- /example/src/pages/ShareText/TextPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/src/pages/ShareText/TextPage.tsx -------------------------------------------------------------------------------- /example/src/pages/ShareText/TextSharePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/src/pages/ShareText/TextSharePage.tsx -------------------------------------------------------------------------------- /example/src/pages/ShareWebView/WebViewContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/src/pages/ShareWebView/WebViewContent.tsx -------------------------------------------------------------------------------- /example/src/pages/ShareWebView/WebViewPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/src/pages/ShareWebView/WebViewPage.tsx -------------------------------------------------------------------------------- /example/src/pages/ShareWebView/WebViewSharePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/src/pages/ShareWebView/WebViewSharePage.tsx -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/package.json -------------------------------------------------------------------------------- /src/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/src/Loading.tsx -------------------------------------------------------------------------------- /src/ShareBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/src/ShareBar.tsx -------------------------------------------------------------------------------- /src/ShareBarItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/src/ShareBarItem.tsx -------------------------------------------------------------------------------- /src/ShareView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/src/ShareView.tsx -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgazzoni/react-native-share-preview/HEAD/yarn.lock --------------------------------------------------------------------------------