도하! 안드로이드, iOS 버전 알아보는 법!
// 안드로이드 버전 감지 import {Platform} from 'react-native'; console.log(Platform.Version); // iOS 버전 감지 import {Platform} from 'react-native'; const majorVersionIOS = parseInt(Platform.Version, 10); console.log(majorVersionIOS);