Home
last modified time | relevance | path

Searched refs:home (Results 1 – 25 of 105) sorted by relevance

12345

/expo/packages/create-expo/src/
H A Dpaths.ts7 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 Dnesting-navigators.mdx21 '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 Dshared-routes.mdx11 …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` &mdash; creates `app/(h…
39 ```jsx app/(home,search)/_layout.js
H A Dstack.mdx50 ```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 Dmodals.mdx18 <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 Dtalks.ts7 home: true,
14 home: true,
21 home: true,
28 home: true,
73 home?:boolean
/expo/packages/@expo/config/src/
H A DgetUserState.ts36 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 Dhome.yml7 - .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 DHomeFilledIcon.tsx6 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 Dsmoke.test.tsx103 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 DgetUserState.js43 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 DgetUserState.js.map1home","homedir","process","env","__UNSAFE_EXPO_HOME_DIRECTORY","boolish","join","getUserStatePath"…
/expo/packages/expo-dev-menu/app/components/__tests__/
H A DMain.test.tsx43 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 Dlayouts.mdx17 ```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 Derror-handling.mdx28 …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 DEXHomeAppManager.h7 #pragma mark - interfacing with home JS
H A DEXHomeAppManager.m70 #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 DEXEmbeddedHomeLoader.m12 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 DEXFileDownloaderTests.m50 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 Done.js19 developers feel at home.”
/expo/templates/expo-template-tabs/app/
H A D[...missing].tsx14 <Text style={styles.linkText}>Go to home screen!</Text>
/expo/docs/pages/router/reference/
H A Dhooks.mdx66 <FileTree files={['app/_layout.tsx', 'app/[first]/home.tsx', 'app/[second]/shop.tsx']} />
68home` pushes `/123/shop`, `useGlobalSearchParams` returns `{ first: undefined, second: '123' }` on…
/expo/home/components/
H A DThemedStatusBar.tsx13 // When switching from an Expo project back to home sometimes the status bar will be
/expo/packages/expo-notifications/build/
H A DgetBadgeCountAsync.js.map1 …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 DNavigationBar.types.js.map1 …eground elements in the navigation bar, i.e. the color of the menu, back, home button icons.\n *\n…

12345