[ RN ] react-native-device-info

Happhee·2021년 12월 22일
0

[ImagineCup] NVP

목록 보기
5/8
post-thumbnail

사용자의 디바이스 고유 아이디를 얻기 위한 라이브러리

📍 설치방법

npm install --save react-native-device-info

설치후 프로젝트와 연결

cd ios
pod install

📍 사용방법

📝 링크텍스트

uniqueId

...
import DeviceInfo from 'react-native-device-info';
...

export default class Home extends React.Component<Props, State> {
    render() {
        const uniqueID = DeviceInfo.getUniqueID();
        ...
    }
}

isTablet();

...
import DeviceInfo from 'react-native-device-info';
...

export default class Home extends React.Component<Props, State> {
    render() {
        const isTablet = DeviceInfo.isTablet();
        // tablet: true / phone: false
        ...
    }
}
profile
즐기면서 정확하게 나아가는 웹프론트엔드 개발자 https://happhee-dev.tistory.com/ 로 이전하였습니다

0개의 댓글