我正在尝试React Native
通过创建应用程序来学习。触摸图像后,我希望在当前屏幕上方放置一个新屏幕。
我想我想使用StackNavigator
after onPress
?我已经阅读过它们,但不知道如何在我当前的代码中使用它们。有任何想法吗??
const listView = ({name, picture}) => {
return (
<View style = {styles.item}>
<TouchableWithoutFeedback onPress={() => //new screen here!!}>
<ImageBackground source = {picture}
resizeMode = 'cover'
style={styles.image}>
<Text style={styles.text}>{name}</Text>
</ImageBackground>
</TouchableWithoutFeedback>
</View>
)
};
请在评论中留下您需要的任何问题。