下面是我的bottomTabs代码不起作用,不用担心我的组件名称正确,我已经检查了很多次。唯一的事情是,当下面的代码加载时,我的应用程序停止运行,通过我在android中对其进行测试的方式(在模拟器以及真实设备中进行了尝试)却无法正常工作。 可能是什么原因?我是原生的新手
const startTabs = () => {
Navigation.setRoot({
root: {
bottomTabs: {
children: [
{
component: {
name: 'awesome-places.SharePlaceScreen',
passProps: {
text: 'This is tab 1',
myFunction: () => 'Hello from a function!',
},
},
},
{
component: {
name: 'awesome-places.FindPlaceScreen',
passProps: {
text: 'This is tab 2',
},
},
},
],
},
}
});
}