将React-Native-Paper BottomNavigation与StackNavigator组合在一起

时间:2020-10-05 15:20:14

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

我当前正在使用React-Native-Paper bottomNavigation。运行良好。但是,下一个要求是将Stack Navigator添加到各个屏幕。我已经在常规的底部栏导航上工作,但是无法使其与React-Native-Paper库一起工作。

const SubjectNavigator = createStackNavigator({
  Subjects: SubjectScreen,
  Topics: TopicListScreen
}, {
    navigationOptions: {}
});

const NavigationController = () => {
  const [index, setIndex] = React.useState(0);
  const [routes] = React.useState([
    { key: 'home', title: 'Home', icon: 'home', color: '#3F51B5' },
    { key: 'subjects', title: 'Subjects', icon: 'book-open', color: '#009688' },
    { key: 'tournaments', title: 'Tournaments', icon: 'trophy', color: '#795548' },
    { key: 'videos', title: 'Video Feeds', icon: 'video', color: '#607D8B' }
  ]);

  const renderScene = BottomNavigation.SceneMap({
    home: HomeScreen,
    subjects: SubjectScreen,
    tournaments: TournamentScreen,
    videos: VideoScreen
  });

  return (
    <BottomNavigation
      navigationState={{ index, routes }}
      onIndexChange={setIndex}
      renderScene={renderScene}
    />
  );
};

export default NavigationController;

尝试在subjectNavigator堆栈中从一个屏幕移动到另一个屏幕时,这样做会给我类似---- Can't Find Variable: navigation的错误。

请帮助!

1 个答案:

答案 0 :(得分:0)

您可以创建一个堆栈导航器组件,用于您的每条路线。然后,传入一个 initialRouteName 道具。

class AppStackScreen extends React.Component {

    render(){
        return(
            <NavigationContainer>
                <Stack.Navigator initialRouteName={this.props.initialRouteName}>
                  <Stack.Screen
                    name="Home"
                    component={HomeScreen}
                  />
                  <Stack.Screen
                    name="Subjects"
                    component={SubjectScreen}
                  />
            </NavigationContainer>
        );
    }
}

然后在您的 BottomNavigation

<BottomNavigation
    navigationState={this.state}
    onIndexChange={this.handleIndexChange}
    renderScene = {({ route, jumpTo }) => {
        switch (route.key) {
            case 'Home':
                return <AppStackScreen initialRouteName="Home" jumpTo={jumpTo} />;
            break;
            case 'Subjects':
                return <AppStackScreen initialRouteName="Subjects" jumpTo={jumpTo} />;
            break;