| /expo/packages/create-expo/src/ |
| H A D | paths.ts | 7 const home = os.homedir(); constant 8 if (!home) { 16 dirPath = path.join(home, '.expo-staging'); 18 dirPath = path.join(home, '.expo-local'); 20 dirPath = path.join(home, '.expo');
|
| /expo/docs/pages/router/advanced/ |
| H A D | nesting-navigators.mdx | 21 'app/home/_layout.js', 22 'app/home/feed.js', 23 'app/home/messages.js', 27 In the above example, **app/home/feed.js** matches `/home/feed`, and **app/home/messages.js** match… 34 Both **app/home/_layout.js** and **app/index.js** below are nested in the **app/_layout.js** layout… 36 ```jsx app/home/_layout.js 44 return <Link href="/home/messages">Navigate to nested route</Link>; 48 Both **app/home/feed.js** and **app/home/messages.js** below are nested in the **home/\_layout.js**… 50 ```jsx app/home/feed.js 61 ```jsx app/home/messages.js
|
| H A D | shared-routes.mdx | 11 …xample, in the Twitter app, a profile can be viewed in every tab (such as home, search, and profil… 18 'app/(home)/_layout.js', 19 'app/(home)/[user].js', 35 …licate the children of a group. For example, `app/(home,search)/[user].js` — creates `app/(h… 39 ```jsx app/(home,search)/_layout.js
|
| H A D | stack.mdx | 50 ```jsx app/home.js 69 title: 'My home', 119 <FileTree files={['app/_layout.js', 'app/home.js']} /> 143 <Stack.Screen name="home" options={{}} /> 152 ```jsx app/home.js
|
| H A D | modals.mdx | 18 <FileTree files={['app/_layout.js', 'app/home.js', 'app/modal.js']} /> 28 name="home" 46 ```jsx app/home.js
|
| /expo/docs/public/static/ |
| H A D | talks.ts | 7 home: true, 14 home: true, 21 home: true, 28 home: true, 73 home?:boolean
|
| /expo/packages/@expo/config/src/ |
| H A D | getUserState.ts | 36 const home = homedir(); constant 41 return path.join(home, '.expo-staging'); 43 return path.join(home, '.expo-local'); 45 return path.join(home, '.expo');
|
| /expo/.github/workflows/ |
| H A D | home.yml | 7 - .github/workflows/home.yml 8 - home/** 13 - .github/workflows/home.yml 14 - home/** 43 working-directory: home 46 working-directory: home 49 working-directory: home
|
| /expo/packages/expo-dev-client-components/src/icons/ |
| H A D | HomeFilledIcon.tsx | 6 const activeLightIcon = require('../../assets/home-filled-active-icon-light.png'); 7 const activeIcon = require('../../assets/home-filled-active-icon.png'); 8 const inactiveLightIcon = require('../../assets/home-filled-inactive-icon-light.png'); 9 const inactiveIcon = require('../../assets/home-filled-inactive-icon.png');
|
| /expo/packages/expo-router/src/__tests__/ |
| H A D | smoke.test.tsx | 103 const Index = jest.fn(() => <Redirect href="/home" />); 104 const Home = jest.fn(() => <Redirect href="/home/nested" />); 112 '(app)/(tabs)/home/_layout': StackLayout, 113 '(app)/(tabs)/home/index': Home, 114 '(app)/(tabs)/home/nested': HomeNested, 144 '(app)/(tabs)/home/_layout': HomeLayout, 145 '(app)/(tabs)/home/index': Home, 148 '(app)/(other_tabs)/(nested_tabs)/home/index': OtherTabsIndex, 151 initialUrl: '/(app)/(other_tabs)/(nested_tabs)/home', 158 act(() => router.replace('/(app)/(tabs)/home'));
|
| /expo/packages/@expo/config/build/ |
| H A D | getUserState.js | 43 const home = (0, _os().homedir)(); 47 return path().join(home, '.expo-staging'); 49 return path().join(home, '.expo-local'); 51 return path().join(home, '.expo');
|
| H A D | getUserState.js.map | 1 …home","homedir","process","env","__UNSAFE_EXPO_HOME_DIRECTORY","boolish","join","getUserStatePath"…
|
| /expo/packages/expo-dev-menu/app/components/__tests__/ |
| H A D | Main.test.tsx | 43 await waitFor(() => getByText(/go home/i)); 60 await waitFor(() => getByText(/go home/i)); 70 await waitFor(() => getByText(/go home/i)); 94 await waitFor(() => getByText(/go home/i)); 103 await waitFor(() => getByText(/go home/i)); 122 await waitFor(() => getByText(/go home/i)); 146 await waitFor(() => getByText(/go home/i)); 149 await act(async () => fireEvent.press(getByText(/go home/i)));
|
| /expo/docs/pages/routing/ |
| H A D | layouts.mdx | 17 ```js app/home/_layout.js 27 ```js app/home/_layout.js 43 <FileTree files={['app/_layout.js', 'app/home/_layout.js', 'app/home/index.js']} /> 53 ```js app/home/_layout.js 67 - **app/root/home.js** matches `/root/home` 68 - **app/(root)/home.js** matches `/home` 87 ```js app/home/_layout.js
|
| H A D | error-handling.mdx | 28 …to render instead. We recommend having a link to `/` so users can navigate back to the home screen. 43 ```tsx app/home.tsx 87 ```js app/home.tsx
|
| /expo/ios/Client/ |
| H A D | EXHomeAppManager.h | 7 #pragma mark - interfacing with home JS
|
| H A D | EXHomeAppManager.m | 70 #pragma mark - interfacing with home JS 74 if (!manifest || !manifestUrl || [manifest.legacyId isEqualToString:@"@exponent/home"]) { 174 // running home
|
| /expo/ios/Exponent/Kernel/AppLoader/ |
| H A D | EXEmbeddedHomeLoader.m | 12 NSString * const EXEmbeddedHomeLoaderErrorDomain = @"embedded-home-loader"; 115 if (!([manifest[@"id"] isEqualToString:@"@exponent/home"])) { 116 DDLogError(@"Bundled kernel manifest was published with an id other than @exponent/home");
|
| /expo/ios/Tests/AppLoader/ |
| H A D | EXFileDownloaderTests.m | 50 NSURL *jsonFileUrl = [NSURL URLWithString:@"https://expo.io/@exponent/home/index.exp"]; 62 …SMutableURLRequest requestWithURL:[NSURL URLWithString:@"https://exp.host/@exponent/home/bundle"]];
|
| /expo/packages/html-elements/babel/__tests__/fixtures/ |
| H A D | one.js | 19 developers feel at home.”
|
| /expo/templates/expo-template-tabs/app/ |
| H A D | [...missing].tsx | 14 <Text style={styles.linkText}>Go to home screen!</Text>
|
| /expo/docs/pages/router/reference/ |
| H A D | hooks.mdx | 66 <FileTree files={['app/_layout.tsx', 'app/[first]/home.tsx', 'app/[second]/shop.tsx']} /> 68 …home` pushes `/123/shop`, `useGlobalSearchParams` returns `{ first: undefined, second: '123' }` on…
|
| /expo/home/components/ |
| H A D | ThemedStatusBar.tsx | 13 // When switching from an Expo project back to home sometimes the status bar will be
|
| /expo/packages/expo-notifications/build/ |
| H A D | getBadgeCountAsync.js.map | 1 …Fetches the number currently set as the badge of the app icon on device's home screen. A `0` value…
|
| /expo/packages/expo-navigation-bar/build/ |
| H A D | NavigationBar.types.js.map | 1 …eground elements in the navigation bar, i.e. the color of the menu, back, home button icons.\n *\n…
|