react-native-alert

1.0.3 • Public • Published

react-native-alert

npm version

Use AlertIOS as a simple way just like native javascript.

INSTALL

$ npm i react-native-alert --save

USAGE

var alert = require('react-native-alert')
 
// Simple way
alert('123')
alert(123) // Number is allowed
 
// With title
alert('123', 'title')
 
// With buttons
alert('123', ['button'])
alert('123', ['button', {text: 'alertButton', onPress: () => alert('ok')}])
 
// Complete usage
alert('title', '123', [
  {text: 'Foo', onPress: () => console.log('Foo Pressed!')},
  {text: 'Bar', onPress: () => console.log('Bar Pressed!')},
])
 
// Or just tell the button text
alert('title', '123', ['btn1', 'btn2', {text: 'Bar', onPress: () => console.log('Bar Pressed!')}])

Dependencies (1)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i react-native-alert

    Weekly Downloads

    25

    Version

    1.0.3

    License

    ISC

    Last publish

    Collaborators

    • mmazzarolo
    • leecade