Wix has the best plugin for notifications.
Includes Local Notifications AND Push (Android & iOS)
https://github.com/wix/react-native-notifications
If you don't want to use push, you can skip the configuration and just install & link to start using
npm install --save react-native-notifications
react-native link react-native-notifications
Take a look at the install guide: https://github.com/wix/react-native-notifications/blob/master/docs/installation.md
Example of use
let localNotification = NotificationsIOS.localNotification({
body: "Local notificiation!",
title: "Local Notification Title",
sound: "chime.aiff",
silent: false,
category: "SOME_CATEGORY",
userInfo: { }
});
NotificationsAndroid.localNotification({
title: "Local notification",
body: "This notification was generated by the app!",
extra: "data"
});
You can find more information on local notifications at https://wix.github.io/react-native-notifications/docs/localNotifications
Also, the notifications layout can be fully customized on Android