All Projects → EmilScherdin → react-native-local-notification

EmilScherdin / react-native-local-notification

Licence: MIT License
No description or website provided.

Programming Languages

javascript
184084 projects - #8 most used programming language
objective c
16641 projects - #2 most used programming language
python
139335 projects - #7 most used programming language
java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to react-native-local-notification

ngx-toasta
Simple and clean Toast notification library for AngularX (Angular2 and beyond)
Stars: ✭ 20 (-16.67%)
Mutual labels:  notifications
RSSnotifier
Node RSS reader telegram bot. Provides notification on queries-matching elements and supports multiple users.
Stars: ✭ 15 (-37.5%)
Mutual labels:  notifications
MongoosePush
MongoosePush is a simple Elixir RESTful service allowing to send push notification via FCM and/or APNS.
Stars: ✭ 101 (+320.83%)
Mutual labels:  notifications
swift-standard-clients
Client declarations and live implementations for standard iOS managers
Stars: ✭ 28 (+16.67%)
Mutual labels:  notifications
NotificationExplorer
See what notifications exist at runtime
Stars: ✭ 43 (+79.17%)
Mutual labels:  notifications
mcMMOAction
Prints some mcMMO message into the action bar
Stars: ✭ 17 (-29.17%)
Mutual labels:  notifications
SimpleCloudNotifier
SimpleCloudNotifier is a app to display messages that you can send to your phone with a simple POST requests.
Stars: ✭ 15 (-37.5%)
Mutual labels:  notifications
ex unit notifier
Desktop notifications for ExUnit
Stars: ✭ 111 (+362.5%)
Mutual labels:  notifications
better-discord-notifications
Scripts that send better sonarr/radarr notifications to discord
Stars: ✭ 13 (-45.83%)
Mutual labels:  notifications
debounced-notifications
Basecamp style notification debouncing / throttling for Laravel notifications.
Stars: ✭ 30 (+25%)
Mutual labels:  notifications
ZVProgressHUD
ZVProgressHUD is a pure-swift and wieldy HUD.
Stars: ✭ 30 (+25%)
Mutual labels:  notifications
devhub
TweetDeck for GitHub - Filter Issues, Activities & Notifications - Web, Mobile & Desktop with 99% code sharing between them
Stars: ✭ 8,064 (+33500%)
Mutual labels:  notifications
Registry Monitor
A Windows script to monitor registry hives for modifications & notify you when modifications have occured.
Stars: ✭ 19 (-20.83%)
Mutual labels:  notifications
OneSignal-WordPress-Plugin
OneSignal is a free push notification service for web and mobile apps. This plugin makes it easy to integrate your website with OneSignal Push Notifications. https://onesignal.com
Stars: ✭ 71 (+195.83%)
Mutual labels:  notifications
symfony5-jwt-restapi
API for Meeting app development
Stars: ✭ 21 (-12.5%)
Mutual labels:  notifications
react-awesome-notifications
A beautiful fully customizable React + Redux notification system built with styled-components
Stars: ✭ 29 (+20.83%)
Mutual labels:  notifications
slack-texts
SMS notifications for Slack groups
Stars: ✭ 19 (-20.83%)
Mutual labels:  notifications
mw-discord
📝 MediaWiki extension that sends notifications to Discord, used on https://runescape.wiki.
Stars: ✭ 16 (-33.33%)
Mutual labels:  notifications
AndroidProjects
个人总结归纳Android知识点。1.Data Binding框架MVVM;2. BaseView;3.CollapseView;4.Notification;5.MultiChannelBuild;6.SwipeBack;7.CustomTabs;8.HandlerCourse;9.VolleyStudy;10.OkHttpStudy;11.PermissionManage;12.InterView;13.KotlinLearning
Stars: ✭ 32 (+33.33%)
Mutual labels:  notifications
twilio-voice-notification-app
Reference app built in ReactJS that demonstrates how to leverage Twilio Programmable Voice and Twilio SDKs to create a voice notification system.
Stars: ✭ 21 (-12.5%)
Mutual labels:  notifications

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
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].