我的代码回购位于:
https://github.com/samrao2/manager-4
我在顶部有一个额外的灰色菜单栏,不知道如何摆脱这个。我的预感是因为我在我的Router.js文件中有一个额外的场景TAG,但我必须按照推荐的解决方案来解决this解决问题this问题。
现在我在所有屏幕的顶部(上面的#34;请登录"栏)得到一个额外的灰色栏,有没有人有任何想法?
答案 0 :(得分:0)
<Router sceneStyle={{ paddingTop: 0 }}>
<Stack key="root" hideNavBar="true">
<Scene key="auth">
<Scene key="login" component={LoginForm} title="Please Login" />
<Scene key="createUser" component={CreateUser} title="Create A New Account" />
<Scene key="password" component={PasswordReset} title="Reset Your Password" />
</Scene>
<Scene key="main">
<Scene
onRight={() => Actions.employeeCreate()}
rightTitle="Add"
key="employeeList"
component={EmployeeList}
title="Employees"
initial
/>
</Scene>
</Stack>
</Router>
我的身份验证密钥中还有更多场景,但您应该明白这一点。