1.0.5 • Published 4 years ago

react-navigator-user-agent v1.0.5

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

react-navigator-user-agent

คือการตรวจสอบอุปการณ์ ที่กำลังใช้อยู่ เช่น ใช้ Android หรือ iOS ในการเปิดหน้าเว็บไซต์

Installation

สามารถติดตั้ง จาก yarn หรือ npm ได้
yarn add react-navigator-user-agent

or

npm i -S  react-navigator-user-agent

Usage

import {getOS, getPatform} from 'react-navigator-user-agent';

function App () {

    return(
        <div>
        {getPatform() !== "Desktop" ? (
            <div>
            Mobile
            </div>
        ): (
            <div>
            Desktop
            </div>
        )}
        </div>
    )
}

OS Support

getOS();

-Android -iOS -Windows -OS X

Patform Support

getPatform();

-Desktop -Mobile

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago