import {launchCamera, launchImageLibrary} from 'react-native-image-picker';
launchCamera(options?, callback);
// You can also use as a promise without 'callback':
const result = await launchCamera(options?);
launchImageLibrary(options?, callback)
// You can also use as a promise without 'callback':
const result = await launchImageLibrary(options?);