react-native-camera-roll-picker icon indicating copy to clipboard operation
react-native-camera-roll-picker copied to clipboard

still too slow, under iPhone 6 plus

Open 12343954 opened this issue 6 years ago • 3 comments

following this https://github.com/jeanpan/react-native-camera-roll-picker/issues/24

<CameraRollPicker
                        maximum={4}
                        imagesPerRow={4}
                        scrollRenderAheadDistance={500}
                        initialListSize={1}
                        pageSize={1}
                        batchSize={5}
                        removeClippedSubviews={true}
                        assetType='Photos'
                        callback={this.selectImages}
                        selected={[]} />

still too slow to show the pictures' list

how to speed up?

thank you !

12343954 avatar May 19 '18 02:05 12343954

same here

pmella16 avatar May 17 '19 20:05 pmella16

Not only that, it also very slow to select an image. For me it's taking at least 4 to 5 sec to select an image

Here is my code

<CameraRollPicker selectSingleItem={true} initialNumToRender={4}
                           callback={()=>this.getSelectedImages()} />

ajitdas123 avatar Jul 27 '19 07:07 ajitdas123

Not only that, it also very slow to select an image. For me it's taking at least 4 to 5 sec to select an image

Here is my code

<CameraRollPicker selectSingleItem={true} initialNumToRender={4}
                           callback={()=>this.getSelectedImages()} />

FYI I've raised a PR (see #98) for the slowness of selecting an image. That has improved the performance of selecting an image dramatically for me.

akontaroudis avatar Nov 02 '19 18:11 akontaroudis