React Native Modal
This post will give you an idea about How to Show a Modal in React Native for Android and IOS. React Native Modal is a component to present content above an enclosing view. This is supported by Android and IOs both. Modal contains its own view which is visible when we open the modal. Here is a small example to show how can we make modal in our React Native App.
To Import Modal in Code
import { Modal } from 'react-native'
Render Using
<Modal>All views inside the modal</Modal>
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 command line interface to make our React Native App.
If you have previously installed a global react-native-cli package, please remove it as it may cause unexpected issues:
npm uninstall -g react-native-cli @react-native-community/cli
Run the following commands to create a new React Native project
npx react-native init ProjectName
If you want to start a new project with a specific React Native version, you can use the --version argument:
npx react-native init ProjectName --version X.XX.X
Note If the above command is failing, you may have old version of react-native
or react-native-cli
installed globally on your pc. Try uninstalling the cli and run the cli using npx.
This will make a project structure with an index file named App.js in your project directory.
Code
Open App.js in any code editor and replace the code with the following code
App.js
//React Native Modal
//https://aboutreact.com/react-native-modal/
//import React in our code
import React, {useState} from 'react';
//import all the components we are going to use
import {
Modal,
Button,
View,
Text,
SafeAreaView,
StyleSheet,
} from 'react-native';
const App = () => {
const [showModal, setShowModal] = useState(false);
return (
<SafeAreaView style={{flex: 1}}>
<View style={styles.container}>
<Modal
animationType={'slide'}
transparent={false}
visible={showModal}
onRequestClose={() => {
console.log('Modal has been closed.');
}}>
{/*All views of Modal*/}
{/*Animation can be slide, slide, none*/}
<View style={styles.modal}>
<Text style={styles.text}>Modal is open!</Text>
<Button
title="Click To Close Modal"
onPress={() => {
setShowModal(!showModal);
}}
/>
</View>
</Modal>
{/*Updating the state to make Modal Visible*/}
<Button
title="Click To Open Modal"
onPress={() => {
setShowModal(!showModal);
}}
/>
</View>
</SafeAreaView>
);
};
const styles = StyleSheet.create({
container: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
backgroundColor: '#ecf0f1',
marginTop: 30,
},
modal: {
flex: 1,
alignItems: 'center',
backgroundColor: '#00ff00',
padding: 100,
},
text: {
color: '#3f2949',
marginTop: 10,
},
});
export default App;
To Run the React Native App
Open the terminal again and jump into your project using.
cd ProjectName
1. Start Metro Bundler
First, you will need to start Metro, the JavaScript bundler that ships with React Native. To start Metro bundler run following command:
npx react-native start
Once you start Metro Bundler it will run forever on your terminal until you close it. Let Metro Bundler run in its own terminal. Open a new terminal and run the application.
2. Start React Native Application
To run the project on an Android Virtual Device or on real debugging device:
npx react-native run-android
or on the iOS Simulator by running (macOS only)
npx react-native run-ios
Output Screenshot
IOS
Android
Output in Online Emulator
That was the React Native Modal. If you have any doubts or you want to share something about the topic you can comment below or contact us here. The remaining components will be covered in the next article. Stay tuned!
Hope you liked it. 🙂