As far as I know, there is no such module. You can make your own. It is very simple.
The code:
// NotificationManager.h #import <Foundation/Foundation.h>
Now you can just send a notification from JavaScript
var NotificationManager = require('react-native').NativeModules.NotificationManager; NotificationManager.postNotification("TestEvent")
source share