React Native package for showing notifications while in the app
npm install react-native-local-notificationA package for React Native apps to show in-app notifications. Works for both iOS and Android.
[...]
`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.
$3
Name | Type | Required | Default
--- | --- | --- | ---
duration |
number | Yes | 3500
startHeight | number | Yes | 46
textStyle | object | No | {}
handleStyle | object | No | {}
notificationStyle | object | No | {}
ellipsizeTextStyle | object | No | {}
$3
Name | Type | Required | Default
--- | --- | --- | ---
title |
string | No | NULL
text | string | Yes | Hello 👋🏼
onPress | func | No | NULL
onHide | func | No | NULL`