我正在将TouchableOpacity与嵌套在其中的图像进行映射。它在Android上效果很好,但在iOS上图像不可见。我仍然可以轻按75x75的可触摸不透明度,但是在弹出的模态中图像通常是不可见的。
这是如何工作的? 我正在使用Expo SDK FileSystem来获取每个图像的路径。
例如:file://path/to/container/progress/myfilehash.jpg
我将其推送到我的状态并将其映射到组件中。我执行此操作的方式require()函数将不起作用。我认为这完全是渲染方面的问题。
地图代码:
{this.state.images.map((val, key) => (
<TouchableOpacity
key={key}
onPress={() => this.setState({active: val, modal: true})}
>
<Image
style={{width: 75, height: 75}}
source={{isStatic: true, uri: val}}
/>
</TouchableOpacity>
))}
模式:
<Container style={Colors.Backdrop}>
<Header style={Colors.Navbar}>
<Left>
<TouchableHighlight
onPress={() => {
this.setState({modal: false})
}}>
<Icon
name="arrow-back"
style={{color: 'white'}}
/>
</TouchableHighlight>
</Left>
<Body></Body>
<Right>
<TouchableOpacity
onPress={() => {
this._deleteImage(this.state.active);
}}>
<Text
style={[
Colors.ErrorText, {
fontSize: 24,
marginRight: 10
}
]}>×</Text>
</TouchableOpacity>
</Right>
</Header>
<Content>
<View
style={{flex: 1}}
>
<FitImage
source={{uri: this.state.active}}
/>
</View>
</Content>
</Container>
用于获取图像路径的代码。 (注意:我尝试不从ios截断具有相同确切结果的“ file://”)
_getAllImagesInDirectory = async() => {
let dir = await FileSystem.readDirectoryAsync(FileSystem.documentDirectory + 'progress');
dir.forEach((val) => {
this.state.images.push(Platform.OS === 'ios' ? FileSystem.documentDirectory.substring(7, FileSystem.documentDirectory.length) : FileSystem.documentDirectory + 'progress/' + val);
});
await this.setState({images: this.state.images, loading: false});
}
答案 0 :(得分:0)
我也曾经遇到过这个问题,我通过将图像粘贴到根文件夹中,然后在Image标记的源中使用了该路径来解决了这个问题。