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>
);
}
}