https://github.com/logisticinfotech/react-native-upload-images-queue
React Native Upload image queue
https://github.com/logisticinfotech/react-native-upload-images-queue
demo-app image-queue mobile-app react-native react-native-image react-native-image-upload tutorial upload-images
Last synced: about 1 month ago
JSON representation
React Native Upload image queue
- Host: GitHub
- URL: https://github.com/logisticinfotech/react-native-upload-images-queue
- Owner: logisticinfotech
- License: mit
- Created: 2018-05-28T14:39:49.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-31T15:43:53.000Z (over 6 years ago)
- Last Synced: 2025-04-23T21:08:19.135Z (about 1 month ago)
- Topics: demo-app, image-queue, mobile-app, react-native, react-native-image, react-native-image-upload, tutorial, upload-images
- Language: Objective-C
- Homepage: https://www.logisticinfotech.com/blog/react-native-import-resized-image-photo-gallery
- Size: 342 KB
- Stars: 6
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
File upload is an essential aspect of any project. Given this importance, it is surprising that many developers face challenges of adding file upload feature to their projects, specially while they have to deal with multiple image upload and project is mostly related to images.
Specifically for mobile application we need to take care of memory being used by application and while we have number of images being uploaded from mobile application.
Here I have created native iOS module with my React Native code because of react-native-photo framework not allowing me to fetch resized image directly so I have to accomplish that using native code here you will get all detail about [this blog](https://www.logisticinfotech.com/blog/react-native-import-resized-image-photo-gallery). Generally we are using mostly using S3 bucket for file uploading so I have used that you may use your own server too as per your requirements.
Actually S3 bucket allow single image upload in single call but I have number of images to upload to S3. To accomplish this I have used queue feature of native which will simplify uploading process in background without holding much more memory of device.
[Here](https://www.logisticinfotech.com/blog/react-native-upload-multiple-images-queue) you will find detailed description about this project. Hope this will help lots to person who are dealing with number of images.