react-native-local-notification
A package for React Native apps to show in-app notifications. Works for both iOS and Android.
Usage
In root component
</View>
[...]
<LocalNotification ref="localNotification" />
</View>
Showing a notification
this.refs.localNotification.showNotification({
title: 'Notification title',
text: 'This is a short notification',
onPress: () => alert('hello short'),
onHide: () => alert('Byeeeee')
});
See Example folder for more details.
Available props on
Name | Type | Required | Default |
---|---|---|---|
duration | number |
Yes | 3500 |
startHeight | number |
Yes | 46 |
textStyle | object |
No | {} |
handleStyle | object |
No | {} |
notificationStyle | object |
No | {} |
ellipsizeTextStyle | object |
No | {} |
Available props on notification object
Name | Type | Required | Default |
---|---|---|---|
title | string |
No | NULL |
text | string |
Yes | Hello ?? |
onPress | func |
No | NULL |
onHide | func |
No | NULL |