我正在尝试将道具传递到自定义的顶部栏标题组件中。下面的代码在iOS上可以正常运行,但是道具不会传递到Android上的title组件中。
我在这里错过了什么吗?似乎与此问题有关。 https://github.com/wix/react-native-navigation/issues/3498
Navigation.showModal({
stack: {
children: [{
component: {
name: 'screenName',
options: {
topBar: {
title: {
component: {
passProps: {
title: 'title',
}
},
},
}
}
}
}]
}
});