
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
react-mobile-app-button
Advanced tools
Discover our versatile React component designed to effortlessly integrate download buttons for iOS App Store, Google Play Store, and Huawei AppGallery. With our component, you can easily enhance user experience by providing seamless access to your mobile
Welcome to our versatile React component designed to seamlessly integrate download buttons for iOS App Store, Google Play Store, and Huawei AppGallery. Enhance your users' experience by providing effortless access to your mobile app on popular platforms. Elevate your app's visibility and accessibility today!
Explore the Documentation: Documentation
You can install this package using npm:
npm install react-mobile-app-button
Or, if you prefer Yarn:
yarn add react-mobile-app-button
Once installed, you'll have access to App Store, Google Play, and AppGallery download buttons for your web page, as shown below:

Here's an example of how to use our component in your React application:
import { GooglePlayButton } from "react-mobile-app-button";
export const MyComponent = () => {
const APKUrl = "https://play.google.com/store/apps/details?id=host";
return (
<div>
<GooglePlayButton
url={APKUrl}
theme={"light"}
className={"custom-style"}
/>
</div>
);
};
You can also import multiple buttons at once and arrange them as needed:
import {
GooglePlayButton,
AppGalleryButton,
ButtonsContainer,
} from "react-mobile-app-button";
export const MyComponent = () => {
const APKUrl = "https://play.google.com/store/apps/details?id=host";
const IOSUrl = "https://apps.apple.com/us/app/expo-go/id982107779";
return (
<ButtonsContainer>
<GooglePlayButton
url={APKUrl}
theme={"light"}
className={"custom-style"}
/>
<AppGalleryButton
url={IOSUrl}
theme={"light"}
className={"custom-style"}
/>
</ButtonsContainer>
);
};
| Name | Component | Type | Description |
|---|---|---|---|
| url | GooglePlayButton, AppGalleryButton, AppStoreButton | string | Store URL |
| theme | GooglePlayButton, AppGalleryButton, AppStoreButton | "dark" / "light" | Button Theme |
| className | GooglePlayButton, AppGalleryButton, AppStoreButton | string | For manual styling |
| title | GooglePlayButton, AppGalleryButton, AppStoreButton | string | For custom message |
| height | GooglePlayButton, AppGalleryButton, AppStoreButton | number | For manual styling |
| width | GooglePlayButton, AppGalleryButton, AppStoreButton | number | For manual styling |
| gap | ButtonsContainer | number | Control the space between buttons |
| direction | ButtonsContainer | "row" / "column" | Control flex direction |
To install and run the project locally, follow these steps:
Clone the repository:
git clone https://github.com/GhassenEljday/react-mobile-app-button.git
Install the dependencies:
npm install
Run the project using Storybook:
npm run storybook
If you encounter any issues or have questions, please don't hesitate to reach out to us:
We're here to assist you in making the most of our React component.
FAQs
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.