使用expo内置的图像选择器可以很好地使用下面的代码,但是我如何自定义它看起来像Instagram应用程序图像上传,甚至包括视频上传。
imagePicker = async () => {
let result = await ImagePicker.launchImageLibraryAsync({
allowsEditing: true,
aspect: [4, 3],
});
console.log(result);
if (!result.cancelled) {
this.setState({ image: result.uri });
}