我正在构建react native应用程序,当我在android上运行它时,它什么也不会呈现,也不会引发任何错误...
我不知道将哪段代码放在这里,所以请在注释中告诉我应该在此处的代码中添加什么内容。
这是App.js文件(此处正在使用反应本机导航!):
Navigation.startTabBasedApp({
tabs:[
{
screen:"APB.ChoosePlatformScreen",
label: "Log In",
title:"Log In",
icon: HomeIcon,
},
{
screen: "APB.ResgisterScreen",
label: "Register",
title:"Register",
icon: HomeIcon
},
],
appStyle: {
tabBarBackgroundColor: "#e8e8e8",
tabBarButtonColor: "#555",
tabBarSelectedButtonColor: 'black',
tabBarSelectedBackgroundColor: "#e8e8e8",
forceTitlesDisplay: true,
showLabel: true,
},
tabBarOptions: {
showLabel: true
}
})
上面所有这些都是文件导入,所有屏幕都已注册,我没有将其放入,因此代码不会太长。