The image picker that comes built in with expo works well using the code below, however how can I customize it to look like the Instagram app image upload, which even includes video upload.
imagePicker = async () => {
let result = await ImagePicker.launchImageLibraryAsync({
allowsEditing: true,
aspect: [4, 3],
});
console.log(result);
if (!result.cancelled) {
this.setState({ image: result.uri });
}