react-native-camera-roll-picker
react-native-camera-roll-picker copied to clipboard
still too slow, under iPhone 6 plus
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 !
same here
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()} />
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.