我有以下组件,我试图在标题区域中添加一些左右标题按钮。但是,我无法logout
调用我的函数。有谁知道我可能做错了什么以及如何解决它?
我正在使用react导航
export default class HomeScreen extends Component<Props> {
constructor(props) {
super(props);
this.state = { refreshing: false }
}
logout = async () => {
alert("HI");
AsyncStorage.setItem('current_appid', '');
this.props.navigation.navigate('Identification');
}
static navigationOptions = {
headerStyle: { backgroundColor:"#fff", height:60},
headerTitleStyle: { color:"#3F61E7", fontSize: 24},
headerBackground: "#fff",
title: 'My Title',
headerRight: <Text style={{marginRight:15, color:"#3F61E7", fontWeight:"400", fontSize:16}}>Settings</Text>,
headerLeft: <Text onPress={async () => this.logout} style={{marginLeft:15, color:"#3F61E7", fontWeight:"400", fontSize:16}}>Log Out</Text>
};
}