├── .gitignore ├── .npmignore ├── README.md ├── RNCustomizedImagePicker.podspec ├── android ├── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── mg │ │ └── app │ │ ├── Compression.java │ │ ├── PickerModule.java │ │ └── PickerPackage.java │ └── res │ ├── mipmap-hdpi │ └── ic_launcher.png │ └── values │ ├── colors.xml │ ├── strings.xml │ └── themes.xml ├── images ├── pic.png ├── pic2.png └── pic3.png ├── index.android.js ├── index.js ├── ios ├── ImageCropPicker.h ├── ImageCropPicker.m ├── ImageCropPicker.xcodeproj │ └── project.pbxproj ├── NSDictionary+SYSafeConvert.h └── NSDictionary+SYSafeConvert.m └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shijingsh/react-native-customized-image-picker/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .git 2 | example 3 | node_modules 4 | build 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shijingsh/react-native-customized-image-picker/HEAD/README.md -------------------------------------------------------------------------------- /RNCustomizedImagePicker.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shijingsh/react-native-customized-image-picker/HEAD/RNCustomizedImagePicker.podspec -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shijingsh/react-native-customized-image-picker/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shijingsh/react-native-customized-image-picker/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shijingsh/react-native-customized-image-picker/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shijingsh/react-native-customized-image-picker/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shijingsh/react-native-customized-image-picker/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shijingsh/react-native-customized-image-picker/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/java/com/mg/app/Compression.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shijingsh/react-native-customized-image-picker/HEAD/android/src/main/java/com/mg/app/Compression.java -------------------------------------------------------------------------------- /android/src/main/java/com/mg/app/PickerModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shijingsh/react-native-customized-image-picker/HEAD/android/src/main/java/com/mg/app/PickerModule.java -------------------------------------------------------------------------------- /android/src/main/java/com/mg/app/PickerPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shijingsh/react-native-customized-image-picker/HEAD/android/src/main/java/com/mg/app/PickerPackage.java -------------------------------------------------------------------------------- /android/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shijingsh/react-native-customized-image-picker/HEAD/android/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shijingsh/react-native-customized-image-picker/HEAD/android/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shijingsh/react-native-customized-image-picker/HEAD/android/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shijingsh/react-native-customized-image-picker/HEAD/android/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /images/pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shijingsh/react-native-customized-image-picker/HEAD/images/pic.png -------------------------------------------------------------------------------- /images/pic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shijingsh/react-native-customized-image-picker/HEAD/images/pic2.png -------------------------------------------------------------------------------- /images/pic3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shijingsh/react-native-customized-image-picker/HEAD/images/pic3.png -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shijingsh/react-native-customized-image-picker/HEAD/index.js -------------------------------------------------------------------------------- /ios/ImageCropPicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shijingsh/react-native-customized-image-picker/HEAD/ios/ImageCropPicker.h -------------------------------------------------------------------------------- /ios/ImageCropPicker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shijingsh/react-native-customized-image-picker/HEAD/ios/ImageCropPicker.m -------------------------------------------------------------------------------- /ios/ImageCropPicker.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shijingsh/react-native-customized-image-picker/HEAD/ios/ImageCropPicker.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/NSDictionary+SYSafeConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shijingsh/react-native-customized-image-picker/HEAD/ios/NSDictionary+SYSafeConvert.h -------------------------------------------------------------------------------- /ios/NSDictionary+SYSafeConvert.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shijingsh/react-native-customized-image-picker/HEAD/ios/NSDictionary+SYSafeConvert.m -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shijingsh/react-native-customized-image-picker/HEAD/package.json --------------------------------------------------------------------------------