react-native-photo-selector
TypeScript icon, indicating that this package has built-in type declarations

3.3.0 • Public • Published

react-native-photo-selector v3.x.x

CameraRoll Picker component for React native

v2.x.x is still available

DEMO

▶️ usecamera(option)

➕ Add to Project

$ npm i react-native-camera react-native-fast-image @react-native-community/cameraroll@git+https://github.com/skqksh/react-native-cameraroll.git
  • ❗️ 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

💡 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} />
}
 

🔧 Props (* : required)

👀 View props detail

📲 Run Example

❗️ 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

👀 View update history

Known Issue

  • (IOS) Could count recent album only under 100

⭐️ ETC

Package Sidebar

Install

npm i react-native-photo-selector

Weekly Downloads

4

Version

3.3.0

License

MIT

Unpacked Size

72.5 kB

Total Files

35

Last publish

Collaborators

  • skqksh