Here is an Example of Popup Dialog in React Native. We will use PopupDialog
component provided by react-native-popup-dialog
to make a Dialog.
We can use Alert instead of the popup dialog if we just want to show the text but when it comes to the customization of alert content we have to use popup dialog.
Popup Dialog Component
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | <Dialog onDismiss={() => { this.setState({ defaultAnimationDialog: false }); }} width={0.9} visible={this.state.defaultAnimationDialog} rounded actionsBordered dialogTitle={ <DialogTitle title="Default Animation Dialog Simple" style={{ backgroundColor: '#F7F7F8', }} hasTitleBar={false} align="left" /> } footer={ <DialogFooter> <DialogButton text="CANCEL" bordered onPress={() => { this.setState({ defaultAnimationDialog: false }); }} key="button-1" /> <DialogButton text="OK" bordered onPress={() => { this.setState({ defaultAnimationDialog: false }); }} key="button-2" /> </DialogFooter> }> <DialogContent style={{ backgroundColor: '#F7F7F8', }}> <Text>Here is an example of default animation dialog</Text> </DialogContent> </Dialog> |
Popup dialog also provides the following components:
- DialogTitle
- DialogButton
- SlideAnimation
- ScaleAnimation
- FadeAnimation
This example contains three types of popup dialogs:
- Default Animation Dialog
- Scale Animation Dialog
- Slide Animation Dialog
To Make a React Native App
Getting started with React Native will help you to know more about the way you can make a React Native project. We are going to use react-native init to make our React Native App. Assuming that you have node installed, you can use npm to install the react-native-cli
command line utility. Open the terminal and go to the workspace and run
npm install -g react-native-cli
Run the following commands to create a new React Native project
react-native init ProjectName
If you want to start a new project with a specific React Native version, you can use the --version argument:
react-native init ProjectName --version X.XX.X
react-native init ProjectName --version react-native@next
This will make a project structure with an index file named App.js in your project directory.
Installation of Dependency
To use PopupDialog
we have to install react-native-popup-dialog
package.
To install this open the terminal and jump into your project
1 | cd ProjectName |
Run the following command
1 | npm install react-native-popup-dialog --save |
This command will copy all the dependencies into your node_module directory. –save is optional, it is just to update the react-native-popup-dialog dependancy in your package.json file.
Now Open App.js in any code editor and replace the code with the following code.
App.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 | /*This is an Example of PopuUp Dialog Example in React Native*/ import React, { Component } from 'react'; import { Button, View, Text, StyleSheet } from 'react-native'; import Dialog, { DialogTitle, DialogContent, DialogFooter, DialogButton, SlideAnimation, ScaleAnimation, } from 'react-native-popup-dialog'; export default class App extends Component { state = { defaultAnimationDialog: false, scaleAnimationDialog: false, slideAnimationDialog: false, }; render() { return ( <View style={{ flex: 1 }}> <View style={styles.container}> <Button title="Default Animation Dialog" onPress={() => { this.setState({ defaultAnimationDialog: true, }); }} /> <Button title="Scale Animation Dialog" onPress={() => { this.setState({ scaleAnimationDialog: true, }); }} /> <Button title="Slide Animation Dialog" onPress={() => { this.setState({ slideAnimationDialog: true, }); }} /> </View> <Dialog onDismiss={() => { this.setState({ defaultAnimationDialog: false }); }} width={0.9} visible={this.state.defaultAnimationDialog} rounded actionsBordered dialogTitle={ <DialogTitle title="Default Animation Dialog Simple" style={{ backgroundColor: '#F7F7F8', }} hasTitleBar={false} align="left" /> } footer={ <DialogFooter> <DialogButton text="CANCEL" bordered onPress={() => { this.setState({ defaultAnimationDialog: false }); }} key="button-1" /> <DialogButton text="OK" bordered onPress={() => { this.setState({ defaultAnimationDialog: false }); }} key="button-2" /> </DialogFooter> }> <DialogContent style={{ backgroundColor: '#F7F7F8', }}> <Text>Here is an example of default animation dialog</Text> </DialogContent> </Dialog> <Dialog onTouchOutside={() => { this.setState({ scaleAnimationDialog: false }); }} width={0.9} visible={this.state.scaleAnimationDialog} dialogAnimation={new ScaleAnimation()} onHardwareBackPress={() => { console.log('onHardwareBackPress'); this.setState({ scaleAnimationDialog: false }); return true; }} dialogTitle={ <DialogTitle title="Scale Animation Dialog Sample" hasTitleBar={false} /> } actions={[ <DialogButton text="DISMISS" onPress={() => { this.setState({ scaleAnimationDialog: false }); }} key="button-1" />, ]}> <DialogContent> <View> <Text> Here is an example of scale animation dialog. Close using back button press </Text> <Button title="Close" onPress={() => { this.setState({ scaleAnimationDialog: false }); }} key="button-1" /> </View> </DialogContent> </Dialog> <Dialog onDismiss={() => { this.setState({ slideAnimationDialog: false }); }} onTouchOutside={() => { this.setState({ slideAnimationDialog: false }); }} visible={this.state.slideAnimationDialog} dialogTitle={<DialogTitle title="Slide Animation Dialog Sample" />} dialogAnimation={new SlideAnimation({ slideFrom: 'bottom' })}> <DialogContent> <Text> Here is an example of slide animation dialog. Please click outside to close the the dialog. </Text> </DialogContent> </Dialog> </View> ); } } const styles = StyleSheet.create({ container: { flex: 1, alignItems: 'center', justifyContent: 'center', }, }); |
To Run the React Native App
Open the terminal again and jump into your project using.cd ProjectName
To run the project on an Android Virtual Device or on real debugging devicereact-native run-android
or on the iOS Simulator by runningreact-native run-ios
(macOS only).
This is how you can make a popup dialog in React Native. If you have any doubt or you want to share something about the topic you can comment below or contact us here. There will be more posts coming soon. Stay tuned!
Hope you liked it. 🙂
popup Dialog still showing after navigation. how to hide after navigation ( in new screen)
Before navigation, you should use this.fadeAnimationDialog.dismiss(); to hide the Dialog and then you should navigate to the otehr screen.
Hi Snehal Agrawal,
Can we apply ScrollView within the popup dialog
I haven’t tried it. Can you please look into it or else let me know I will try?
Hello guys in this dialog we can put a Popup Menu – Over Flow Menu