我想知道如何在FlatList属性上使用React Navigation,其中Stack.Screen的名称来自.json
文件。
这样,当用户单击该项目时,他们将转到应用程序的另一个页面。
数据
{
Data: [
{
"key": "0",
"label": "Test",
"goTo": "Test", <--- Here goes the name of Stack.Screen from routes.js
}
]
}
FlatList结构
function Item({ label, goTo }) {
return (
<Ripple rippleCentered onPressIn={goTo}> // (react-native-material-ripple)
<Option>
<Icon name={onIcon} size={28} color={onColor} /> // (react-native-vector-icons)
<OptionLabel color={onColor}>{label}</OptionLabel>
</Option>
</Ripple>
);
}
我已经尝试在涟漪的onPressIn
属性上使用navigation.navigate({goTo})
,但出现了ReferenceError:* 找不到变量:导航 *
最终导出组件
export default class Menu extends Component {
render() {
return (
<Container color={this.props.color}>
<FlatList
data={Data}
showsVerticalScrollIndicator={false}
keyExtractor={item => item.key}
numColumns={5}
columnWrapperStyle={Styles.Row}
renderItem={({ item }) =>
<Item
goTo={item.goTo}
label={item.label}
/>
}
/>
</Container>
);
}
}
1条答案
按热度按时间xxhby3vn1#
读取json文件
导航
可以使用
useNavigation
钩子调用navigation.navigate(goTo)
例如
请注意,
Menu
需要在NavigationContainer
之下,这样useNavigation
才能工作。