pallyoung / react-native-alertui

react-native-alertui

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

react-native-alertui

if you want to have a same alert dialog ui on android and ios,you can use react-native-alertui,it provide a common component for both android and ios platform.

previews

preivews

example

cd example && npm install

usage

npm install react-native-alertui --save
import AlertUI from 'react-native-alertui'

now you can use AlertUI maybe with the code below.

<AlertUI 
    title = 'Alert'
    message = 'this is a message from alertui'
    buttons ={
        [
            {
                text:'OK',
                onPress:function(){/*dosth*/}
            },
            {
                text:'Cancel',
                onPress:function(){/*dosth*/}
            }
        ]}
/>

About

react-native-alertui

License:MIT License


Languages

Language:JavaScript 41.3%Language:Objective-C 34.3%Language:Python 13.4%Language:Java 10.9%