如何像Instagram应用程序一样在expo中自定义imagepicker?

NSC*_*der 5 image react-native expo

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 });
        }
Run Code Online (Sandbox Code Playgroud)