我正在尝试使用我在 FlatList 中获取的值导航到另一个屏幕。
举个例子:
renderItem={({item}) =>(
<Text style={styles.FlatListItemStyle}
onPress={() => {props.navigation.navigate('AnotherScreen', {item: item.Value1})}} > ID : {item.Value1}
</Text>
})
这是导航js。
<Stack.Screen
name='OneScreen'
component={OneScreen}
options={({ route }) => ({
title: route.params.item.Value1
})}
/>
所以我想导航到另一个使用 Value1 作为参数的屏幕。
但我越来越不确定。
请帮我。