react native image picker camera

Solutions on MaxInterview for react native image picker camera by the best coders in the world

showing results for - "react native image picker camera"
Irene
30 Mar 2020
1$ yarn add react-native-image-picker
2...
3let options: ImagePicker.CameraOptions = {
4  saveToPhotos: true,
5  mediaType: 'photo',
6  cameraType: 'front'
7};
8
9ImagePicker.launchCamera(options, (response) => {
10  if (response.assets) {
11    console.log(response.assets);
12  }
13})
similar questions
queries leading to this page
react native image picker camera