Я думаю, вы можете сделать это -
toggleDrawer = () => {
this.props.navigationProps.toggleDrawer();
};
<View style={{ flexDirection: 'row' }}>
<TouchableOpacity onPress={this.toggleDrawer.bind(this)}>
<Image
source={require('./image/drawer.png')}
style={{ width: 25, height: 25, marginLeft: 5 }}
/>
</TouchableOpacity>
</View>