我正在使用react-native-navigation的showInAppNotifications()
,并且我希望能够使用通知中的按钮来关闭它。
有可能吗?
(需要同时支持IOS和Android。
这是我的代码:
// show the notification:
this.props.navigator.showInAppNotification({
screen: 'Notifications',
passProps: {
header: 'Logbook',
note:this.props.notes,
body: 'Recived/Urgent events'
},
autoDismissTimerSec: 10,
dismissWithSwipe: true
});
// the notification itself:
class Notifications extends Component {
render() {
return (
<TouchableOpacitiy
onPress={/* Code to close the notification... */}
>
. . .
</TouchableOpacitiy>
.
.
.
);
}
}
答案 0 :(得分:1)
this.props.navigator.dismissInAppNotification();
我不知道为什么没有对此文件进行记录。