Something similar to [NSLocale currentLocale] in Objective-C.
I am using react-native-i18n
in order to access the device's language I used:
import { getLanguages } from 'react-native-i18n'; getLanguages().then(languages => { console.log(languages); // ['en-US', 'en'] });
It's all in the documentation.