如果您想拥有尾随项,可以使用separators.updateProps 添加自定义属性。下面我使用了FlatList docs 中的示例并稍作修改。在此示例中,我们突出显示了单击项目的尾随分隔符,并将 trailingItem 添加到 ItemSeparatorComponent 的 props 中。
#输出:
#代码:
JSX:
<View style={styles.container}>
<FlatList
ItemSeparatorComponent={(props) => {
console.log('props', props); // here you can access the trailingItem with props.trailingItem
return (<View style={{height: 5, backgroundColor: props.highlighted ? 'green' : 'gray'}} />);
}}
data={data}
inverted
renderItem={({item, index, separators}) => renderItem(item,index,separators)}
/>
</View>
渲染项目:
const renderItem = (item, index, separators) => {
return (
<TouchableHighlight
key={item.key}
onPress={() => console.log('onPress')}
onShowUnderlay={() => separators.updateProps('trailing', {trailingItem: data[index+1], highlighted: true})}
onHideUnderlay={() => separators.updateProps('trailing', {trailingItem: data[index+1], highlighted: false})}>
<View style={{backgroundColor: 'white', height: 50, justifyContent: 'center', alignItems: 'center'}}>
<Text>{item.id}</Text>
</View>
</TouchableHighlight>
);
}
#说明:
整个魔法发生在这里:
onShowUnderlay={() => separators.updateProps('trailing', {trailingItem: data[index+1], highlighted: true})}
从我们可以看到的文档中,updateProps 需要以下两个参数:
选择(枚举('前导','尾随'))
newProps(对象)
首先我们选择trailing,然后我们可以添加我们的自定义属性。我们正在添加 trailingItem 道具,我们正在覆盖 highlighted 道具。现在我们可以使用 props.trailingItem 访问 ItemSeparatorComponent 中的道具(见上文,我在特定行留下了评论)。
#工作示例:
https://snack.expo.io/@tim1717/flatlist-separators