Take Multiple Pictures using Expo ImagePicker.launchCameraAsync or Camera. takePictureAsync

Is there any way to take multiple pictures? the way I am currently doing it requires me to open the camera multiple times, and the delay between each open is significantly noticable

    while (true) {
        let result = await ImagePicker.launchCameraAsync({
            base64: true,
            quality: 1.0
        });
        if (!result.cancelled) {
            arr.push(result.base64);
            continue
        }
        else
            break
    }

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.