首页 > 解决方案 > 如何在反应原生博览会中选择多个图像

问题描述

如何在反应原生博览会中选择多个图像

 import React from 'react';
    import ImagesExample from './ImagesExample.js'

    const App = () => {
       return (
          <ImagesExample />
       )
    }
    export default App

标签: react-native

解决方案


没有官方方法可以通过 ImagePicker 在 expo 中选择多个图像,但我们可以通过文件系统选择

检查这个链接


推荐阅读