react-native-photo-selector
v3.3.0
Published
A React Native component providing images selection from camera roll
Downloads
39
Maintainers
Readme
react-native-photo-selector v3.x.x
CameraRoll Picker component for React native
v2.x.x is still available
DEMO
:arrow_forward: usecamera(option)
:heavy_plus_sign: Add to Project
- Install Dependency libraries with Android & IOS settings
$ npm i react-native-camera react-native-fast-image @react-native-community/cameraroll@git+https://github.com/skqksh/react-native-cameraroll.git
:exclamation: about : @react-native-community/cameraroll@git+https://github.com/skqksh/react-native-cameraroll.git
- Only IOS. With this version, you can take favorites album
Install component through npm
$ npm i react-native-photo-selector@latest
:bulb: Basic Usage
import PhotoSelector, { PhotoProps } from 'react-native-photo-selector';
...
const Demo = () => {
const _callback = (images: PhotoProps[], image: PhotoProps) => {
console.log('selected images :', images);
console.log('current image :', image);
};
return <PhotoSelector callback={_callback} />
}
:wrench: Props (* : required)
:eyes: View props detail
:calling: Run Example
:exclamation: To run the example app, you have to check the permissions of the app
$ git clone https://github.com/skqksh/react-native-photo-selector.git
$ cd react-native-photo-selector
$ cd example
$ npm install
$ (ios) cd ios
$ (ios) pod install
$ (ios) pod update SDWebImage
$ npm run android / npm run ios
Update Log
:eyes: View update history
Known Issue
- (IOS) Could count recent album only under 100
:star: ETC
- Typescript Support
- This library is based from react-native-camera-roll-picker