How to add Share button in React Native ? Last Updated : 25 Jul, 2024 Comments Improve Suggest changes Like Article Like Report React Native is an open-source UI software framework created by Meta Platforms, Inc. It is used to develop applications for Android, Android TV, iOS, macOS, tvOS, Web, Windows, and UWP by enabling developers to use the React framework along with native platform capabilities.In this article, we will be learning how we can add a share button in react native.Creating React Native App: Step 1: We'll be using expo to create the react native app. Install expo-cli using the below command in the terminal.npm install -g expo-cliStep 2: Create a react native project using expo.expo init "gfg"Step 3: Now go to the created project using the below command.cd "gfg"Project Structure: It will look like the following:Example: Adding a Share Button: You can easily add a share button in your react native app using the Share API. For this, add the below code inside the App.js file. JavaScript import React from "react"; import { Share, View, Button, Text } from "react-native"; const GfGApp = () => { const shareData = async () => { try { await Share.share({ message: 'This is the demo text', }); } catch (error) { alert(error.message); } }; return ( <View style={{ marginTop: 80 }}> <Text style={{ fontSize: 18 }}> GeeksforGeeks React Native Share</Text> <Button onPress={shareData} title="Share" /> </View> ); }; export default GfGApp; Here we are using the share function of the Share module to add the share button in the app.Run the application: Now run the application using the below command in the terminal.npm run webOutput: Create Quiz Comment I imranalam21510 Follow 0 Improve I imranalam21510 Follow 0 Improve Article Tags : React Native Explore React Native BasicsIntroduction to React Native3 min readWhat are the steps to create first React Native App ?4 min readHow React Native works5 min readWhat is a bridge in React Native ?7 min readHow React Native is different from ReactJS ?4 min readReact Native Debugging4 min readReact Native ComponentsHow to import components in React Native ?5 min readReact Native ListView Component4 min readReact Native ScrollView Component8 min readReact Native Tab Navigation Component3 min readReact Native Drawer Navigation Component3 min readReact Native ActivityIndicator Component2 min readDumb Components in React Native5 min readWhat is the TouchableHighlight in react native ?4 min readReact Native FlatList Component4 min readReact Native AsyncStorage Component5 min readReact Native Button Component6 min readReact Native UI ElementsHow to style React Native Application ?5 min readHow to create a basic button in React Native ?5 min readReact Native Animated Fade In Fade Out Effect8 min readHow to create custom FAB(Floating Action Button) in React Native?7 min readHow to add a Progress Bar in react-native using react-native-paper library ?10 min readHow to create Avatar in react-native ?6 min readReact Native APIReact Native Switch API6 min readReact Native Alert API6 min readReact Native QuestionsFind what caused Possible unhandled promise rejection in React Native ?5 min readAxios in React Native8 min readHow to create a table in react-native ?2 min readHow to fetch data from a local JSON file in React Native ?3 min readHow to center a View component on screen ?3 min readHow to Add Icons at the Bottom of Tab Navigation in React Native ?3 min readHow to add SearchBar in React Native ?13 min readHow to set Background Image in react-native ?5 min readHow to pass value between Screens in React Native ?6 min readHow to make a Post request from frontend in react-native ?9 min readHow to add GIFs in react-native ?2 min readHow to Implement Form Validation in React Native ?3 min readHow many threads run in a React Native app ?3 min readHow to add Table in React Native ?2 min readHow to add a Menu in react-native using Material Design ?9 min readWhat are props in React Native ?5 min readHow to Implement Radio Button In React Native ?10 min readHow to check the version of React native ?2 min readHow to perform logging in React Native ?4 min readHow to Upload and Preview an Image in React Native ?4 min readHow to Add Phone Number Input in React Native ?3 min readHow to Get Window Width and Height In React Native ?5 min readHow to check Platform and Device Details in React Native ?3 min readReact Native ProjectsTop React Native Apps to Build in 20259 min readHow to Create ToDo App using React Native ?11 min readHow to Create Calendar App in React Native ?7 min readHow to Create a Basic Notes App using React Native?14 min readHow to Generate Random Numbers in React Native ?7 min readBuild a Calculator using React Native10 min readCreate a Task Manager App using React-Native12 min readHow to Create Emoji Picker in React Native ?3 min readCreate a Stop Watch using React Native10 min readCreate an OTP Generator and Validator App using React-Native11 min readCreate a Rock Paper Scissors Game using React-Native10 min readCreate a Number Guessing App using React-Native10 min readCreate a BMI Calculator App using React-Native4 min readCreate a GPA Calculator using React Native15+ min readCreate a Password Manager using React-Native15+ min readCreate Jokes Generator App using React-Native8 min readBuild a Dictionary App Using React Native15+ min readCreate a Blog App using React-Native15+ min readCreate a Text Editor App using React-Native3 min readCreate a Password Validator using React-Native11 min readCreate a Currency Converter using React-Native14 min read Like