react-native-notification-center

react-native-notification-center

Usage no npm install needed!

<script type="module">
  import reactNativeNotificationCenter from 'https://cdn.skypack.dev/react-native-notification-center';
</script>

README

订阅

componentWillMount(){
    this._notifyList = new Array();
    this._notifyList.push(APLNotificationCenter.getInstance().subscribe('mykey', (info)=>{
        console.log(info);
    }));
}

componentWillUnmount(){
    this._notifyList.forEach((notifyItem)=>{
        APLNotificationCenter.getInstance().remove(notifyItem);
    });
}

发布

APLNotificationCenter.getInstance().publish('mykey' {
    text:'发布的消息'
});