我正在尝试在这个扭曲之后包装可触摸的物品
我发现的问题是导航将通过启动应用程序自动触发,它将导航到详细信息页面而无需按下它。并且当导航返回时,可触摸的项目不能再被按下,按下时会抛出错误。
我制作了一个最低限度的应用程序来指出这一点:
import React , { Component } from 'react';
import { StyleSheet,FlatList, Text, View,TouchableOpacity } from 'react-native';
import {
StackNavigator,
} from 'react-navigation';
class Detail extends Component {
static navigationOptions = {
title: "Detail",
};
render(){
return(
<View>
<Text>{this.props.value}</Text>
</View>
);
}
}
class MyItem extends Component{
render(){
return(
<View>
<TouchableOpacity onPress={this.props.nav("Detail", {value: this.props.value})}>
<Text> {this.props.value}</Text>
</TouchableOpacity>
</View>
);
}
}
class Home extends React.Component {
static navigationOptions = {
title: "Home",
};
render() {
const {navigate} = this.props.navigation;
return (
<View style={styles.container}>
<FlatList
data = {[
{key: "1"},
{key: "2"},
{key: "3"}
]
}
renderItem = {({item}) => <MyItem nav={navigate} value={item.key} />}
/>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});
const App = StackNavigator({
Home: { screen: Home },
Detail: { screen: Detail },
})
export default App
由于我的英语不好很难描述这个问题,所以我还制作了一个youtube 视频(大约 20M)来控诉这个问题