React Navigation - navigation.navigate() not navigating using top window
Solution 1:
Your Home screen is a modal
and the settings screen is a card
and you tried to open the card screen inside the modal screen, it's not possible, either you have to set settings as a modal
, so it will pop on top of the Home or set the Home as a card
, so it won't popup on top of the settings screen.