Issue
When open the gallery I see only 6 default images for emulator, how add custom?
ImagePicker.openPicker({
multiple: true,
mediaType: 'photo',
forceJpg: true,
}).then((images) =>
setImagesMeta((prevState) => {
return [...images, ...prevState]
})
)
Solution
- On iOS Simulator you can images via drag & drop
- For android you can use adb push
Answered By - Michael Bahl
Answer Checked By - - Dawn Plyler (ReactFix Volunteer)