【发布时间】:2017-09-20 10:08:00
【问题描述】:
尝试使用 this.props.navigator.showInAppNotification
this.props.navigator.showInAppNotification({
screen: "example.InAppNotification",
passProps: {
title: 'Title',
body: 'Body...'
},
position: 'bottom',
autoDismissTimerSec: 3
});
屏幕 InAppNotification 已注册,但看到通知内容为空白:
有人可以帮忙吗?
example.InAppNotification:
export default class InAppNotification extends Component {
render() {
console.log(this.props);
return (
<View>
<Text>
{JSON.stringify(this.props)}
</Text>
</View>
);
}
}
【问题讨论】:
-
内容是什么。 example.InAppNotification
-
将其添加到问题中。
标签: android react-native react-native-navigation