Simple react native dialog
npm install simple-react-native-dialog1.Dialog with 2 buttons and callback

Built with
- react-native
| Property | Type | Required | Example | Default |
| ------------------------ | ------------- | -------- | ------------------------- | ----------- |
| header | String | false | | null |
| info | String | true | | |
| primaryButtonText | String | false | | NO |
| secondaryButtonText | String | false | | YES |
| primaryButtonStyle | Object | false | {backgroundColor: String} | transparent |
| primaryButtonTextStyle | Object | false | {color: String} | black |
| secondaryButtonStyle | Object | false | {backgroundColor: String} | transparent |
| secondaryButtonTextStyle | Object | false | {color: String} | black |
| buttonAlignment | String | false | "center", "left" | right |
| primaryButtonPress | Function | false | ()=>{alert('hi')} | void |
| secondaryButtonPress | Function | false | ()=>{alert('hi')} | void |
-To enable the secondary button just pass the secondaryButtonPress property.
javascript
import React, {Component} from 'react';
import {Platform, StyleSheet, Text, View, TouchableOpacity} from 'react-native';
import Dialog from 'simple-react-native-dialog';const instructions = Platform.select({
ios: 'Press Cmd+R to reload,\n' + 'Cmd+D or shake for dev menu',
android:
'Double tap R on your keyboard to reload,\n' +
'Shake or press menu button for dev menu',
});
export default class App extends Component {
handleClick = () =>{
Dialog.showDialog(
{
header: "Hello",
info: "Wow its working",
primaryButtonText:"CANCEL",
secondaryButtonText:"CONFIRM",
primaryButtonTextStyle: styles._buttonTextStyle,
secondaryButtonTextStyle: styles.secondaryButtonText,
secondaryButtonPress:()=>{
alert('Hello');
}
}
)
}
render() {
return (
Welcome to React Native!
To get started, edit App.js
{instructions}
style={styles.button}
onPress={this.handleClick}
>
Show Dialog
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#F5FCFF',
},
welcome: {
fontSize: 20,
textAlign: 'center',
margin: 10,
},
instructions: {
textAlign: 'center',
color: '#333333',
marginBottom: 5,
},
button:{
padding:10,
backgroundColor:'#23a1d7'
},
buttonText:{
color:"#F5FCFF"
},
buttonStyle: {
backgroundColor: "white"
},
_buttonTextStyle: {
color: "black"
},
secondaryButtonText:{
color: "#23a1d7"
}
});
`Installation
yarn: yarn add simple-react-native-dialognpm: npm install --save simple-react-native-dialog
How to use?
1. import it in your project
`javascript
import Dialog from 'simple-react-native-dialog';
`
2. Declare it in your component
`javascript
`
3. Trigger it in a function call
`javascript
handleClick = () =>{
Dialog.showDialog(
{
header: "Hello",
info: "Wow its working",
primaryButtonText:"NO",
secondaryButtonText:"YES",
primaryButtonTextStyle: styles._buttonTextStyle,
secondaryButtonTextStyle: styles.secondaryButtonText,
secondaryButtonPress:()=>{
alert('Hello');
}
}
)
}
``