从父级导航到特定组件(React Native Navigation)

时间:2020-04-27 14:13:27

标签: react-native react-native-navigation

Noob关于React Native Navigation的问题。

这是我的App.js。启动它时,我看到了Component1。

import React, { Component } from 'react';

import { NavigationContainer } from '@react-navigation/native';
import { createStackNavigator } from '@react-navigation/stack';

const Stack = createStackNavigator();

class App extends Component {

  constructor(props){
    super(props);
  }

  myFunction(){
    /*
      -------------------------------------------
      Navigate from Component1 to Component2 (???)
      -------------------------------------------
    */
  }

  render(){
    return(
          <Stack.Navigator>
              <Stack.Screen name="Component1" component={Component1} />
              <Stack.Screen name="Component2" component={Component2} />
          </Stack.Navigator>
    );
  }

}

export default App

在myFunction内部的同一类中,我想导航到 Component2 。怎么做?

我找到的所有指南,都使用导航道具在 Component1 中解释了如何进行操作。我需要从父母那里做。

1 个答案:

答案 0 :(得分:1)

您可以尝试

constexpr it