Skip to content Skip to sidebar Skip to footer

Navigate To Another Screen From Tab-view Screen Not Working

following is my code:- posting full code index.android.js import React, { Component } from 'react'; import { AppRegistry, Text, StyleSheet, View, NetInfo, Alert, AsyncStorage }

Solution 1:

Seems like you're navigating to the wrong screen name. This should do it.

GoPressed(navigate){
    navigate("Registerscreen");
  }

I honestly can't test out your code as it'll take too much time. How about you check out this simple working example of what your looking for and match it with your code.

Go the Settings tab and then you can click on the button to navigate to the other Registerscreen which is not in the Tabs.

https://snack.expo.io/HJ5OqS5qZ

Post a Comment for "Navigate To Another Screen From Tab-view Screen Not Working"