简体   繁体   English

屏幕未在本机反应中导航

[英]screens are not navigating in react native

I have a login screen then from there I navigate to home screen, and on home screen there are 4 buttons Alphabets, Ch-1,Ch-2 and Ch-3, by pressing each of those buttons, I can easily navigate to correct screens but Inside Alphabet screen, I have 2 more buttons Learn and Give test But when I press those, nothing happens, i can't navigate to the respective screens plus there are no errors.我有一个登录屏幕,然后从那里导航到主屏幕,在主屏幕上有 4 个按钮字母、Ch-1、Ch-2 和 Ch-3,通过按这些按钮中的每一个,我可以轻松导航到正确的屏幕但在字母表屏幕内,我还有 2 个按钮学习和进行测试但是当我按下这些按钮时,没有任何反应,我无法导航到相应的屏幕而且没有错误。 I guess its nested navigation.我猜它的嵌套导航。 I might sound stupid to an expert out there:) but I am new (from scratch) to react native and navigation stuff i really have no idea what to do!对于那里的专家来说,我可能听起来很愚蠢 :) 但我是新手(从头开始)对本地和导航的东西做出反应我真的不知道该怎么做! Will be really thankful if someone helps!如果有人帮助,将非常感激!

CODE IS GIVEN BELOW:代码如下:

This is my home.js (its in folder screens):这是我的 home.js(它在文件夹屏幕中):

import React from "react";
import {View, StyleSheet, Text} from 'react-native';
import { TouchableOpacity } from "react-native-gesture-handler";
import { Auth } from "../services";

export default home =({navigation}) => {
    return (
        <View style={styles.body}>
            <Text style={styles.toptext}>
                Merheba!
            </Text>

        

            <TouchableOpacity onPress={() => navigation.navigate('alphabets')}
            style={styles.button}
            >
                <Text style={styles.buttontext}>Alphabets</Text>
            </TouchableOpacity>

            <TouchableOpacity onPress={() => navigation.navigate('ch1')}
            style={styles.button}
            >
                <Text style={styles.buttontext}>Chapter 1</Text>
            </TouchableOpacity>

            <TouchableOpacity onPress={() => navigation.navigate('ch2')}
            style={styles.button}
            >
                <Text style={styles.buttontext}>Chapter 2</Text>
            </TouchableOpacity>

            <TouchableOpacity onPress={() => navigation.navigate('ch3')}
            style={styles.button}
            >
                <Text style={styles.buttontext}>Chapter 3</Text>
            </TouchableOpacity>

            <TouchableOpacity onPress={() => Auth.signOut()}
            style={styles.button}
            >
                <Text style={styles.buttontext}>Sign Out</Text>
            </TouchableOpacity>

        </View>
    )
}

This is index.js from screens folder:这是 screens 文件夹中的 index.js:

export {default as home} from './home';

export {default as login} from './login';
export {default as forgotp} from './login';
export {default as signup} from './signup';
export {default as alphabets} from './alphabets';
export {default as alphl} from './alphl';
export {default as alpht} from './alpht';
export {default as ch1} from './ch1';
export {default as ch2} from './ch2';
export {default as ch3} from './ch3';

This is alphabets.js from screens folder:这是 screens 文件夹中的 alphabets.js:

import { NavigationContainer } from "@react-navigation/native";
import React from "react";
import {View, StyleSheet, Text} from 'react-native';
import { TouchableOpacity } from "react-native-gesture-handler";


export default alphabets =({navigation}) => {
    return (

       

        <View style={styles.body}>
       

            <Text style={styles.toptext}>
                Merheba!
            </Text>

            <TouchableOpacity onPress={() => navigation.navigate('alphl')}
            style={styles.button}
            >
                <Text style={styles.buttontext}>Learning Sheet</Text>
            </TouchableOpacity>

            <TouchableOpacity onPress={() => navigation.navigate('alpht')}
            style={styles.button}
            >
                <Text style={styles.buttontext}>Give Test</Text>
            </TouchableOpacity>


        </View>
    )
}

AppNavigation.js from navigation folder:导航文件夹中的 AppNavigation.js:

import React from 'react';
import { createStackNavigator } from '@react-navigation/stack';
import home from '../screens/home';
import alphabets from '../screens/alphabets';
import ch1 from '../screens/ch1';
import ch2 from '../screens/ch2';
import ch3 from '../screens/ch3';



const stack=createStackNavigator();

export default AppNavigator =  () => {
    return(
    <stack.Navigator
        screenOptions={{
            headerShown: null
        }}
    >
        <stack.Screen name="home" component={home} />
        <stack.Screen name="alphabets" component={alphabets} />
        <stack.Screen name="ch1" component={ch1}/>
        <stack.Screen name="ch2" component={ch2} />
        <stack.Screen name="ch3" component={ch3} />
        

    </stack.Navigator>
       
    )  
}

AlphNavigator.js from navigation folder:导航文件夹中的 AlphNavigator.js:

import React from 'react';
import { createStackNavigator } from '@react-navigation/stack';
import alphl from '../screens/alphl';
import alpht from '../screens/alpht';

const stack=createStackNavigator();
 
export default AlphNavigator = () => {
    return(
    <stack.Navigator
        screenOptions={{
            headerShown: null
        }}
    >
        <stack.Screen name="alphl" component={alphl} />
        <stack.Screen name="alpht" component={alpht} />
       
        

    </stack.Navigator>
       
    )  
}

& lastly index.js from navigation folder: &最后是导航文件夹中的 index.js:

import React, {useState, useEffect} from 'react';
import { NavigationContainer } from '@react-navigation/native';
import  AppNavigator  from './AppNavigator';
import AuthNavigator  from './AuthNavigator';
import auth from '@react-native-firebase/auth';

export default AppContainer = () => {

     // Set an initializing state whilst Firebase connects
  const [initializing, setInitializing] = useState(true);
  const [user, setUser] = useState();

  // Handle user state changes
  function onAuthStateChanged(user) {
    setUser(user);
    if (initializing) setInitializing(false);
  }

  useEffect(() => {
    const subscriber = auth().onAuthStateChanged(onAuthStateChanged);
    return subscriber; // unsubscribe on unmount
  }, []);
  if (initializing) return null;


  return(
      <NavigationContainer>
          {user ? <AppNavigator/>  : <AuthNavigator/>}
      </NavigationContainer>


      
  )
}

You aren't defining your "AlphNavigator" in your "AppNavigator".您没有在“AppNavigator”中定义“AlphNavigator”。

You should do this inside your AppNavigator:您应该在 AppNavigator 中执行此操作:

export default AppNavigator =  () => {
return(
<stack.Navigator
    screenOptions={{
        headerShown: null
    }}
>
    <stack.Screen name="home" component={home} />
    <stack.Screen name="alphabets" component={alphabets} />
    <stack.Screen name="alph" component={ AlphNavigator } /> /*here add your AlpNavigator*/
    <stack.Screen name="ch1" component={ch1}/>
    <stack.Screen name="ch2" component={ch2} />
    <stack.Screen name="ch3" component={ch3} />

</stack.Navigator>
)}

It's normal that you do not have any error in this case, because React Navigation does not mark you as an error if a screen does not exist.在这种情况下你没有任何错误是正常的,因为如果屏幕不存在,React Navigation 不会将你标记为错误。

The above could be solved if you were using TypeScript.如果您使用的是 TypeScript,则可以解决上述问题。

So now, in order to access to nested navigation screens you should use:所以现在,为了访问嵌套的导航屏幕,您应该使用:

navigation.navigate('alph', { screen: 'alphl' })

The first parameter is the name of the stack navigation, and the second one is an object with the name of the screen inside to this nested navigation.第一个参数是堆栈导航的名称,第二个参数是一个 object,其中包含此嵌套导航中的屏幕名称。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM