react app store button
1.0.0
一個React組件,可讓您創建iOS App Store或Google Play商店下載按鈕。此按鈕:
svg文件,因此不必擔心分辨率url , width和height指定您的應用商店按鈕"iosDark" , "iosLight"或"android"如果您只想要圖像,可以在這裡獲取它們:iosdark ioslight android
示例代碼:
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 >
) ;
}
}您將在網頁上獲得iOS App Store Dwonload按鈕,如下所示:

使用npm或yarn安裝
npm install --save react-mobile-store-buttongit clone https://github.com/rizzomichaelg/react-mobile-store-button.git
cd react-mobile-store-button/example
yarn && yarn start麻省理工學院