我已经尝试了这个错误的所有在线解决方案。我无法打开图像库。
<Button
onPress={() =>
ImagePicker.launchImageLibrary(
{
mediaType: 'photo',
includeBase64: false,
maxHeight: 200,
maxWidth: 200,
},
response => {
console.log(response);
setPhoto(response);
},
)
}
title="Select Image"
/>
我尝试过的解决方案:
rm -rf node_modules
npm install
cd ios
pod install
cd ..
我试图改变导入和如何调用launchImageLibrary
import * as ImagePicker from 'react-native-image-picker';
// import {launchImageLibrary} from 'react-native-image-picker';
不幸的是,我还没有找到一个解决方案,工程?有什么想法吗
1条答案
按热度按时间guicsvcw1#
解决办法是
然后清理构建并重新构建应用程序。