takePicture = () => { if (this.camera) { this.camera.takePictureAsync({ onPictureSaved: this.onPictureSaved }); } }; onPictureSaved = photo => { console.log(photo); }