Home > OS >  Taking photos and display it on a custom list react-native
Taking photos and display it on a custom list react-native

Time:12-15

I'm working on an app where the user will take photos(unlimited) using a floating button, the photos will be displayed in a custom list (like in recyclerview). The custom list will have each item composed of the image taken and an edit text to describe the image.

I'm just starting with react-native. Is there a tutorial/library you would recommend me to use? and how hard is this to implement in react-native.

CodePudding user response:

You need to install an external lib like this: react-native-image-picker

and you have to implement it on both IOS and Android (as in docs)

  • Related