Home
last modified time | relevance | path

Searched refs:loaded (Results 1 – 25 of 206) sorted by relevance

123456789

/expo/packages/expo-font/build/
H A DFont.js5 import { loaded, loadPromises } from './memory';
42 return fontFamily in loaded || !!ExpoFontLoader.isLoaded(fontFamily);
44 return fontFamily in loaded;
96 if (loaded[fontFamily]) {
110 loaded[fontFamily] = true;
129 for (const fontFamily of Object.keys(loaded)) {
130 delete loaded[fontFamily];
159 if (!loaded[fontFamily]) {
163 delete loaded[fontFamily];
H A DFontHooks.js12 const [loaded, setLoaded] = useState(
22 return [loaded, error];
H A Dmemory.js1 export const loaded = {}; constant
H A Dmemory.d.ts1 export declare const loaded: { constant
H A DFontHooks.js.map1loaded, setLoaded] = useState(\n // For web rehydration, we need to check if the fonts are alre…
/expo/packages/expo-font/src/
H A DFont.ts11 import { loaded, loadPromises } from './memory';
55 return fontFamily in loaded || !!ExpoFontLoader.isLoaded(fontFamily);
57 return fontFamily in loaded;
134 if (loaded[fontFamily]) {
151 loaded[fontFamily] = true;
176 for (const fontFamily of Object.keys(loaded)) {
177 delete loaded[fontFamily];
219 if (!loaded[fontFamily]) {
222 delete loaded[fontFamily];
H A DFontHooks.ts15 const [loaded, setLoaded] = useState( constant
28 return [loaded, error];
H A Dmemory.ts1 export const loaded: { [name: string]: boolean } = {}; constant
/expo/packages/expo-font/src/__tests__/__snapshots__/
H A DFont-test.native.ts.snap.ios16 "fontFamily "not-loaded" is not a system font and has not been loaded through expo-font.",
26 exports[`within Expo client processFontFamily scopes loaded names of loaded fonts 1`] = `"ExpoFont-…
H A DFont-test.native.ts.snap.android16 "fontFamily "not-loaded" is not a system font and has not been loaded through expo-font.",
26 exports[`within Expo client processFontFamily scopes loaded names of loaded fonts 1`] = `"ExpoFont-…
/expo/templates/expo-template-tabs/app/
H A D_layout.tsx22 const [loaded, error] = useFonts({
33 if (loaded) {
36 }, [loaded]);
38 if (!loaded) {
/expo/packages/@expo/cli/src/api/rest/__tests__/
H A DwrapFetchWithProgress-test.ts52 loaded: 65536,
59 loaded: 150604,
/expo/packages/expo-modules-core/ios/
H A DEXAppDefines.m43 NSAssert(!_loaded, @"EXAppDefines is already loaded");
61 reason:@"EXAppDefines is not loaded."
/expo/ios/versioned/sdk49/ExpoModulesCore/ios/
H A DABI49_0_0EXAppDefines.m43 NSAssert(!_loaded, @"ABI49_0_0EXAppDefines is already loaded");
61 reason:@"ABI49_0_0EXAppDefines is not loaded."
/expo/ios/versioned/sdk48/ExpoModulesCore/ios/
H A DABI48_0_0EXAppDefines.m43 NSAssert(!_loaded, @"ABI48_0_0EXAppDefines is already loaded");
61 reason:@"ABI48_0_0EXAppDefines is not loaded."
/expo/ios/versioned/sdk47/ExpoModulesCore/ios/
H A DABI47_0_0EXAppDefines.m43 NSAssert(!_loaded, @"ABI47_0_0EXAppDefines is already loaded");
61 reason:@"ABI47_0_0EXAppDefines is not loaded."
/expo/docs/pages/router/reference/
H A Dasync-routes.mdx13 …faster development as only the routes you navigate to will be bundled or loaded into memory. This …
21 … are loaded asynchronously. This means that the first time you navigate to a route, it will take a…
27 …hey don't export a default component. After the component is bundled and loaded, then any invalid …
70 …--clear` flag to clear the Metro cache. This will ensure that the routes are loaded asynchronously:
/expo/packages/@expo/cli/src/api/rest/
H A Dclient.types.ts10 loaded: number;
/expo/packages/expo-router/build/
H A DloadStaticParamsAsync.js67 const loaded = await route.loadRoute();
69 if (loaded.generateStaticParams) {
70 staticParams = await loaded.generateStaticParams({
/expo/packages/expo-router/src/
H A DloadStaticParamsAsync.ts98 const loaded = await route.loadRoute(); constant
102 if (loaded.generateStaticParams) {
103 staticParams = await loaded.generateStaticParams({
/expo/apps/native-component-list/src/screens/
H A DFontScreen.tsx31 Font icons sets and other custom fonts can be loaded from the web
34 Font icons sets and other custom fonts can be loaded by providing remote uri as well.
/expo/packages/expo-asset/build/
H A DAssetHooks.js.map1loaded, this hook returns a list of asset instances.\n * If something went wrong when loading the …
/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/React/Base/
H A DABI49_0_0RCTMultipartStreamReader.h11 typedef void (^ABI49_0_0RCTMultipartProgressCallback)(NSDictionary *headers, NSNumber *loaded, NSNu…
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/React/Base/
H A DABI48_0_0RCTMultipartStreamReader.h11 typedef void (^ABI48_0_0RCTMultipartProgressCallback)(NSDictionary *headers, NSNumber *loaded, NSNu…
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/React/Base/
H A DABI47_0_0RCTMultipartStreamReader.h11 typedef void (^ABI47_0_0RCTMultipartProgressCallback)(NSDictionary *headers, NSNumber *loaded, NSNu…

123456789