我需要视频上的图标,但是我希望它们在向下滚动时粘住,我已将图标插入到平面列表之外,但无法删除空白,有人可以帮忙吗?
以下是我实现图标的返回函数:
<View style={{flex:1}}>
<View style={{flexDirection:'row', justifyContent: 'flex-end', position:'absolute', zIndex:1}}>
<TouchableOpacity>
<Icon
name="shopping-cart"
size={24}
style={{ paddingRight: 40 }}
color="black"
/>
</TouchableOpacity>
<TouchableOpacity>
<Icon
name="user-circle"
size={24}
style={{ paddingRight: 20 }}
color="black"
/>
</TouchableOpacity>
</View>
<FlatList
data={this.state.data.product}
renderItem={({ item }) => (
<View style = {{alignContent: 'stretch'}}>
{/* {this.header} */}
<ViewportAwareVideo
source={{ uri: item.urlVid }}
visible={this.state.visible}
resizeMode = "cover"
style={{width: width, height:height}}
innerRef={ref => this._videoRef = ref}
onViewportEnter={() => this._videoRef.play()}
onViewportLeave={() => this._videoRef.stop()}
/>
<View
style={{
position: 'absolute',
flexDirection: 'column',
alignItems: 'flex-end',
top: '50%',
right: 10,
}}>
<TouchableOpacity
onPress={this.handleClick}
style={{
alignItems: 'center',
borderRadius: 60,
padding: 10,
}}>
<Icon
name="heart"
size={30}
color={this.state.buttonColor}
onPress={this.onButtonPress}
/>
</TouchableOpacity>
<TouchableOpacity
style={{
alignItems: 'center',
borderRadius: 60,
padding: 10,
}}>
<Icon name="share" size={30} color="white" />
</TouchableOpacity>
<Text style={{ right: 5, color: 'white' }} />
<TouchableOpacity
style={{
alignItems: 'center',
borderRadius: 60,
padding: 10,
}}>
<Icon name="whatsapp" size={30} color="white" />
</TouchableOpacity>
<Text style={{ right: 5, color: 'white' }} />
<TouchableOpacity
style={{
alignItems: 'center',
borderRadius: 60,
padding: 10,
}}>
<Icon name="download" size={30} color="white" />
</TouchableOpacity>
<Text style={{ right: 5, color: 'white' }} />
</View>
<View
style={{
position: 'absolute',
flexDirection: 'column',
top: '90%',
left: 10,
}}>
<View
style={{
flexDirection: 'row',
}}>
<Text
style={{ fontWeight: 'bold', fontSize: 20, color: 'white' }}>
{item.title} - {item.price}
</Text>
</View>
</View>
</View>
)}
keyExtractor={ item => item.id}
/>
</View>
添加 Zindex 并将位置设为绝对后,顶部仍然有这个空白,请告诉我如何完全删除它