|
|
|
|
|
by thisischichi
3377 days ago
|
|
A todo app for the greenfingered. Nice! Might get people talking if you had a social share function... How easy was it to integrate the upload functionality in React Native? And where do the pictures go? Amazon S3? I posted my first thing to Hacker News today too:
https://news.ycombinator.com/item?id=13938994 |
|
Regarding the photos -- for this MVP, I made it a point to not build any server whatsoever. So for now, all pictures are stored on the device's file system. For this I use https://github.com/marcshilling/react-native-image-picker to take/choose the photos and then https://github.com/johanneslumpe/react-native-fs to manage them in the application's storage.