For those using Expo, you should use getLocales()
function:
const getDeviceLocale = () => {
const locale = Localization.getLocales()[0]?.languageCode || 'en'
return locale
}
It returns the prefered app languages in order from app settings on iOS.
Source: https://docs.expo.dev/versions/latest/sdk/localization/