0
イメージを完全に選択しましたが、ビデオを選択できません。 私は何をする必要がありますか?REACT-NATIVE-IMAGE-PICKERでライブラリからビデオを選択するにはどうすればよいですか?
インポートImagePicker from 'react-native-image-picker';
openImagePicker(){
const options = {
title:'select an option',
storageOptions:{
skipBackup:true,
path:'images'
}
}
ImagePicker.showImagePicker(options,(response) => {
if(response.didCancel){
console.log('user cancelled');
}else if (response.error) {
console.log('ERROR'+response.error);
}else if (response.customButton) {
console.log('user tapped'+response.customButton);
}else {
this.setState({
imagePath: response.uri,
imageHeight: response.height,
imageWidth: response.width
})
}
})
}
ありがとうございます! – Oscar
選択したビデオを 'View'の中でどのように表示するか??? –