how to get images dynamically from folder react native code example
Example: how to dynamically show image from local storage in react native
// our data
// we need to require all images,
// so that React Native knows about them statically
const items = [
{
id: '001',
image: require('../images/001.jpeg'),
},
{
id: '002',
image: require('../images/002.jpeg'),
},
];
// render
items.map( (item) =>
<Image key={item.id} source={item.image} />
)