Home
last modified time | relevance | path

Searched refs:getMobileCountryCodeAsync (Results 1 – 9 of 9) sorted by relevance

/expo/packages/expo-cellular/build/
H A DCellular.js217 export async function getMobileCountryCodeAsync() { function
218 if (!ExpoCellular.getMobileCountryCodeAsync) {
221 return await ExpoCellular.getMobileCountryCodeAsync();
H A DExpoCellular.web.d.ts12 getMobileCountryCodeAsync(): Promise<string | null>; constant
H A DCellular.d.ts185 export declare function getMobileCountryCodeAsync(): Promise<string | null>;
H A DExpoCellular.web.js48 async getMobileCountryCodeAsync() {
H A DCellular.js.map1getMobileCountryCodeAsync()`](#getmobilecountrycodeasync) instead.\n *\n */\nexport const mobileCo…
H A DExpoCellular.web.js.map1 …nc(): Promise<string | null> {\n return null;\n },\n async getMobileCountryCodeAsync(): Promi…
/expo/packages/expo-cellular/src/
H A DCellular.ts234 export async function getMobileCountryCodeAsync(): Promise<string | null> { function
235 if (!ExpoCellular.getMobileCountryCodeAsync) {
238 return await ExpoCellular.getMobileCountryCodeAsync();
H A DExpoCellular.web.ts49 async getMobileCountryCodeAsync(): Promise<string | null> {
/expo/apps/native-component-list/src/screens/
H A DCellularScreen.tsx35 mobileCountryCode: await Cellular.getMobileCountryCodeAsync(),