react-native-local-notification

3.0.12 • Public • Published

react-native-local-notification

A package for React Native apps to show in-app notifications. Works for both iOS and Android.

Demo

local_notification

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

Readme

Keywords

none

Package Sidebar

Install

npm i react-native-local-notification

Weekly Downloads

267

Version

3.0.12

License

MIT

Unpacked Size

10.8 kB

Total Files

4

Last publish

Collaborators

  • scherdin