├── .all-contributorsrc ├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── release.yml ├── .gitignore ├── .husky ├── .npmignore ├── commit-msg └── pre-commit ├── .lintstagedrc.json ├── .npmignore ├── .releaserc.json ├── .yarnrc ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── android ├── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── reactnativefileutils │ ├── FileUtilsModule.java │ └── FileUtilsPackage.java ├── babel.config.js ├── commitlint.config.js ├── example ├── android │ ├── app │ │ ├── build.gradle │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── reactnativefileutils │ │ │ │ └── ReactNativeFlipper.java │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── reactnativefileutils │ │ │ │ ├── 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.tsx ├── ios │ ├── File.swift │ ├── FileUtilsExample-Bridging-Header.h │ ├── FileUtilsExample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── FileUtilsExample.xcscheme │ ├── FileUtilsExample.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── FileUtilsExample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── main.m │ ├── Podfile │ ├── Podfile.lock │ └── SharePhoto │ │ ├── Base.lproj │ │ └── MainInterface.storyboard │ │ ├── Info.plist │ │ ├── ShareViewController.h │ │ └── ShareViewController.m ├── metro.config.js ├── package.json ├── src │ └── App.tsx └── yarn.lock ├── ios ├── FileUtils.h ├── FileUtils.m └── FileUtils.xcodeproj │ └── project.pbxproj ├── package.json ├── react-native-file-utils.podspec ├── scripts └── bootstrap.js ├── src ├── __tests__ │ └── index.test.tsx ├── index.tsx ├── types │ └── MediaSize.ts └── utils │ └── get-react-rative-image-size.ts ├── tsconfig.build.json └── tsconfig.json /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.npmignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.lintstagedrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/.lintstagedrc.json -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | ./example -------------------------------------------------------------------------------- /.releaserc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/.releaserc.json -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/.yarnrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/README.md -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/java/com/reactnativefileutils/FileUtilsModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/android/src/main/java/com/reactnativefileutils/FileUtilsModule.java -------------------------------------------------------------------------------- /android/src/main/java/com/reactnativefileutils/FileUtilsPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/android/src/main/java/com/reactnativefileutils/FileUtilsPackage.java -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/babel.config.js -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { extends: ['@commitlint/config-conventional'] }; 2 | -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/example/android/app/debug.keystore -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/debug/java/com/example/reactnativefileutils/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/example/android/app/src/debug/java/com/example/reactnativefileutils/ReactNativeFlipper.java -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/example/reactnativefileutils/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/example/android/app/src/main/java/com/example/reactnativefileutils/MainActivity.java -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/example/reactnativefileutils/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/example/android/app/src/main/java/com/example/reactnativefileutils/MainApplication.java -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/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/Qeepsake/react-native-file-utils/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/Qeepsake/react-native-file-utils/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/Qeepsake/react-native-file-utils/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/Qeepsake/react-native-file-utils/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/Qeepsake/react-native-file-utils/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/Qeepsake/react-native-file-utils/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/Qeepsake/react-native-file-utils/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/Qeepsake/react-native-file-utils/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/Qeepsake/react-native-file-utils/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/Qeepsake/react-native-file-utils/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/example/app.json -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/example/index.tsx -------------------------------------------------------------------------------- /example/ios/File.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/example/ios/File.swift -------------------------------------------------------------------------------- /example/ios/FileUtilsExample-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/example/ios/FileUtilsExample-Bridging-Header.h -------------------------------------------------------------------------------- /example/ios/FileUtilsExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/example/ios/FileUtilsExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/FileUtilsExample.xcodeproj/xcshareddata/xcschemes/FileUtilsExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/example/ios/FileUtilsExample.xcodeproj/xcshareddata/xcschemes/FileUtilsExample.xcscheme -------------------------------------------------------------------------------- /example/ios/FileUtilsExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/example/ios/FileUtilsExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/FileUtilsExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/example/ios/FileUtilsExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/FileUtilsExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/example/ios/FileUtilsExample/AppDelegate.h -------------------------------------------------------------------------------- /example/ios/FileUtilsExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/example/ios/FileUtilsExample/AppDelegate.m -------------------------------------------------------------------------------- /example/ios/FileUtilsExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/example/ios/FileUtilsExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/FileUtilsExample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/example/ios/FileUtilsExample/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /example/ios/FileUtilsExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/example/ios/FileUtilsExample/Info.plist -------------------------------------------------------------------------------- /example/ios/FileUtilsExample/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/example/ios/FileUtilsExample/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/FileUtilsExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/example/ios/FileUtilsExample/main.m -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/ios/SharePhoto/Base.lproj/MainInterface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/example/ios/SharePhoto/Base.lproj/MainInterface.storyboard -------------------------------------------------------------------------------- /example/ios/SharePhoto/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/example/ios/SharePhoto/Info.plist -------------------------------------------------------------------------------- /example/ios/SharePhoto/ShareViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/example/ios/SharePhoto/ShareViewController.h -------------------------------------------------------------------------------- /example/ios/SharePhoto/ShareViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/example/ios/SharePhoto/ShareViewController.m -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/example/package.json -------------------------------------------------------------------------------- /example/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/example/src/App.tsx -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /ios/FileUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/ios/FileUtils.h -------------------------------------------------------------------------------- /ios/FileUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/ios/FileUtils.m -------------------------------------------------------------------------------- /ios/FileUtils.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/ios/FileUtils.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/package.json -------------------------------------------------------------------------------- /react-native-file-utils.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/react-native-file-utils.podspec -------------------------------------------------------------------------------- /scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/scripts/bootstrap.js -------------------------------------------------------------------------------- /src/__tests__/index.test.tsx: -------------------------------------------------------------------------------- 1 | it.todo('write a test'); 2 | -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/types/MediaSize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/src/types/MediaSize.ts -------------------------------------------------------------------------------- /src/utils/get-react-rative-image-size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/src/utils/get-react-rative-image-size.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qeepsake/react-native-file-utils/HEAD/tsconfig.json --------------------------------------------------------------------------------