Skip to content

rizzomichaelg/react-mobile-store-button

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

45 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

react-mobile-store-button

An React component which allows you to create an iOS App Store or Google Play Store Download Button. This button:

  • Using vector format, svg file , so don't worry about the resolution
  • Can specify your App Store button with customized url, width and height
  • Specify "ios" or "android"

Usage

Example Code:

import MobileStoreButton from 'react-mobile-store-button';

////

export default class MyComponent extends React.Component {
	render() {
		const iOSUrl = 'https://itunes.apple.com/us/app/all-of-the-lights/id959389722?mt=8';
		return (
			<div>
				<MobileStoreButton
				  store="ios"
				  url={iOSUrl}
				  linkProps={{ title: 'iOS Store Button' }}
				/>
			</div>
		);
	}
}

You will get an iOS App Store dwonload button on Web page looks like this:

https://github.com/rizzomichaelg/react-mobile-store-button/blob/master/img/example.png?raw=true

Install

install using npm or yarn

npm install --save react-mobile-store-button

How to Run the Example

git clone https://github.com/rizzomichaelg/react-mobile-store-button.git
cd react-mobile-store-button/example
yarn && yarn start

License

MIT

About

A react component which allows you to place an iOS AppStore or Google Play Store Download button!

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 85.4%
  • HTML 8.7%
  • CSS 5.9%