1I think you should use the main navigation object obtained from useNavigation:
2
3 const navigation = useNavigation();
4 return (
5 <Button transparent onPress={() => navigation.openDrawer()}>
6 <Icon active name="menu"/>
7 </Button>
8 )