Socket
Socket
Sign inDemoInstall

react-native-custom-alerts

Package Overview
Dependencies
0
Maintainers
5
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    react-native-custom-alerts

A library to define alerts to be used all accoss an application.


Version published
Maintainers
5
Install size
3.91 kB
Created

Readme

Source

React Native Custom Alerts

This library provides the ability to define alerts which can be used all across an application. Instead of having a separate function for all these alerts, we can define them when the application starts and easily use them wherever we need them.

Install

 npm install react-native-custom-alerts

or

 yarn add react-native-custom-alerts

Usage

You need to register you alerts when the application starts.

import {CustomAlert} from 'react-native-custom-alerts';

CustomAlert.setup('my-custom-alert', 'Title', 'Message', buttons, options);
CustomAlert.setup('my-second-alert', 'Title', 'Message', buttons, options);

Now, you can place the alert you want to show elsewhere in your application.

import {CustomAlert} from 'react-native-custom-alerts';

CustomAlert.alert('my-second-alert');

Methods

setup()

static setup(name, title, message?, buttons?, options?)

alert()

static alert(name)

Authors

  • Sagar Raja Shakya - Author

License

This project is licensed under the MIT License

Keywords

FAQs

Last updated on 17 Sep 2021

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc