我正在尝试显示启动画面,应用程序打开时的位置屏幕,基本上是singleScreenApp
,一旦选择了位置,我想将用户推送到home screen
TabBased screen
侧抽屉。
对于导航我正在使用名为wix react native navigation的反应原生包
我面临的问题是,当页面加载它时,直接将我带到主页。启动画面和登录界面不会出现
这是我的每个页面的代码
App.js (这是我的应用入口点)
import { Navigation } from 'react-native-navigation';
import { registerScreens } from './screens/index';
registerScreens();
Navigation.startSingleScreenApp({
screen: {
screen: 'app.splash',
title: 'Splash',
}
});
然后我的启动画面代码一些图像和计时器进入位置屏幕。
在位置屏幕上,我点击它时有一个按钮,它将home.js
设置为root
我主屏幕的代码 home.js
import React, { Component } from 'react';
import {...} from 'react-native';
import "../resources/components/mainTabs";
class HomeScreen extends Component {
render = () => {
return (
// BLOCK TO RENDER
);
}
}
module.exports = HomeScreen;
mainTabs.js ,其中包含基于标签的导航的代码
import { Navigation } from 'react-native-navigation';
import Icon from 'react-native-vector-icons/Ionicons';
Promise.all([
Icon.getImageSource("md-home", 30),
Icon.getImageSource("md-calendar", 30),
]).then(sources => {
Navigation.startTabBasedApp({
tabs: [
{
screen: "app.home",
label: "Home",
title: "Subscription",
icon: sources[0],
},
{
screen: "app.subscription",
label: "Subscription",
title: "Subscription",
icon: sources[1],
}
],
drawer: {
left: {
screen: "app.sideDrawer"
}
}
});
});
所以这首先显示启动画面然后是标签屏幕,但它直接显示在标签屏幕上。任何人都可以帮助我谢谢你 线程我跟随:react-native-navigation | Setting initial screen without putting it as tab?
答案 0 :(得分:0)
替换import“../resources/components/mainTabs”;与import tabs from "../resources/components/mainTabs";
然后点击登录按钮,只需拨打tabs()
如果问题仍然存在,请告诉我您的registerScreens()函数,以便我可以提供更多帮助