Camera too slow on ios device

What can i do to make it faster?

Here is my code:

<View>
  <TouchableOpacity
    onPress={() =>
      this.camera.takePictureAsync({
        onPictureSaved: this.onTakePicture
      })
    }
  >
    <Entypo size={60} name="circle" color="#fff" />
  </TouchableOpacity>

  <Camera
    style={{ flex: 1 }}
    type={Camera.Constants.Type.back}
    ref={ref => (this.camera = ref)}
  />
</View>

Hey @dflourusso,

I’m having trouble seeing what’s going on in that video. Can you describe what’s happening that makes you deem the Camera API too slow? Also, what iOS device are you using?

Cheers,

Adam

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