使用“本机导航”进行导航

时间:2019-01-09 14:11:32

标签: react-native react-redux react-router

我使用“ react-native-navigation”创建了应用程序,并且第一次导航运行正常。

 Navigation.startSingleScreenApp({
      screen: {
          screen: 'drawer.HomeScreen',
          title: '',
          navigatorStyle: {
              navBarHidden: true
          }
      }
  });

导航出现问题

import { Navigation } from 'react-native-navigation';

并尝试使用

进行导航
Navigation.push({
      component: {
          name: 'drawer.DashboardScreen'
      }
});

startMainTab.js

 const startTabs = () => {
      Promise.all([
          Icon.getImageSource("ios-share-alt", 30),
          Icon.getImageSource("ios-menu", 30)
      ]).then(sources => {
          Navigation.startTabBasedApp({
              tabs: [{
                      screen: 'drawer.AnalyticsScreen',
                      navigatorButtons: {
                          leftButtons: [{
                              icon: sources[1],
                              title: "Menu",
                              id: 'sideDrawerToggle'
                          }]
                      }
                  },
                  {
                      screen: 'drawer.DashboardScreen',
                      navigatorButtons: {
                          leftButtons: [{
                              icon: sources[1],
                              title: "Menu",
                              id: 'sideDrawerToggle'
                          }]
                      }
                  }
              ],
              drawer: {
                  left: {
                      screen: 'drawer.SideDrawer'
                  }
              }
          });
      });
  }

SideDrawer.js

  export default startTabs;

      export default class SideDrawer extends Component {

      constructor(props) {
          super(props);
          this.props.navigator.setOnNavigatorEvent(this.onNavigatorEvent);
      }

      componentWillMount() {
          this.props.navigator.setOnNavigatorEvent(this.onNavigationEvent)
      }

  onNavigationEvent = (event) => {
          // handle a deep link
          if (event.type == 'DeepLink') {
              const parts = event.link;
              alert("Scree: " + parts)
              //this.navigateToAbout()                  

              this.props.navigator.push({
                  screen: "drawer.HomeScreen"
              })
              if (parts == 'drawer.DashboardScreen') {
                  //this.onPressScreen1();
              }
          }
      }

      navigateToAbout = () => {
          this.props.navigator.push({
              screen: 'drawer.DashboardScreen'
          })

      }
      render() {
          return ( <
              View style = {
                  styles.container
              } >
              <
              Text > SideDrawer < /Text> <
              TouchableHighlight onPress = {
                  this.navigateToAbout.bind(this)
              } >
              <
              Text > Click Me < /Text> <
              /TouchableHighlight> <
              /View>
          )
      }
  }

2 个答案:

答案 0 :(得分:1)

由于按下屏幕是您在现有导航堆栈上执行的操作,因此需要在当前组件导航器对象上调用它,您将自动获得它作为道具: this.props.navigator.push({screen: 'drawer.DashboardScreen'})

我强烈建议您迁移到react-native-navigation v2,因为v1的功能有限并且不再维护。

答案 1 :(得分:0)

从此处下载源代码(React Native Navigation

App.js:

import React, {Component} from 'react';
import {createStackNavigator,createAppContainer} from 'react-navigation'
import HomeScreen from './Screens/HomeScreen';
import ProfileScreen from './Screens/ProfileScreen';
import ContactScreen from './Screens/ContactScreen';
import MainScreen from './Screens/MainScreen'


export default class App extends Component {
render() {

return <AppNavigationContainer/>

}

}
const AppNavigator = createStackNavigator({

Main:MainScreen,

Home: HomeScreen,

Profile: ProfileScreen,

Contact:ContactScreen

}, {

initialRouteName: 'Main',

navigationOptions: {

headerTitleStyle: {

fontWeight: "bold",

color: "red",

},

headerTintColor: "red"

}

})

const AppNavigationContainer = createAppContainer(AppNavigator);

从一个屏幕移动到另一个屏幕:

this.props.navigation.navigate('Profile')

谢谢!