Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sjchmiela/05c13703539cc03620d6487a6167ef45 to your computer and use it in GitHub Desktop.
Save sjchmiela/05c13703539cc03620d6487a6167ef45 to your computer and use it in GitHub Desktop.
handleCameraTypeChange = () =>
this.setState(({ cameraType }) => ({
cameraType: cameraType === Camera.Constants.Type.back
? Camera.Constants.Type.front
: Camera.Constants.Type.back,
}));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment