react-native-device-info ReactNative에서 디바이스에 정보를 출력하는 네이티브 라이브러리 이다.
[Installation]
npm install --save react-native-device-info
[Linking]
react-native link react-native-device-info
react-native-device-info를 사용하여 디바이스 정보를 출력해보자
import DeviceInfo from 'react-native-device-info';
_DeviceInfo() {
console.log("DeviceInfo.getApplicationName : "+DeviceInfo.getApplicationName());
console.log("DeviceInfo.getBrand : "+DeviceInfo.getBrand());
console.log("DeviceInfo.getBrand : "+DeviceInfo.getBrand());
console.log("DeviceInfo.getBuildNumber : "+DeviceInfo.getBuildNumber());
console.log("DeviceInfo.getDeviceCountry : "+ DeviceInfo.getDeviceCountry());
console.log("getDeviceLocale : "+DeviceInfo.getDeviceLocale());
}
더 자세한 내용은 https://github.com/rebeccahughes/react-native-device-info 참고하자
'React & React Native ' 카테고리의 다른 글
FlexBox 레이아웃이란? (1) (0) | 2018.10.14 |
---|---|
default node version 변경하기 (0) | 2018.10.14 |
RCTCameraRoll 라이브러리 연결하기 (Xcode) (0) | 2018.10.11 |
Unable to resolve module `./../../react-transform-hmr/lib/index.js` (0) | 2018.10.10 |
리액트 네이티브 안드로이드 개발환경 설정 (0) | 2018.10.06 |