| /expo/home/screens/DiagnosticsScreen/ |
| H A D | index.tsx | 2 import { useTheme } from '@react-navigation/native'; 7 } from '@react-navigation/stack'; 61 navigation, 65 <AudioDiagnostic navigation={navigation} /> 68 <ForegroundLocationDiagnostic navigation={navigation} /> 70 <BackgroundLocationDiagnostic navigation={navigation} /> 73 <GeofencingDiagnostic navigation={navigation} /> 79 navigation, 95 navigation, 109 navigation, [all …]
|
| /expo/docs/common/ |
| H A D | routes.ts | 3 import navigation from '~/public/static/constants/navigation.json'; 11 return navigation.reference[version] as NavigationRoute[]; 13 return navigation[getPageSection(path)] as NavigationRoute[]; 26 return navigation.referenceDirectories.some(name => Utilities.pathStartsWith(name, path)); 30 return navigation.homeDirectories.some(name => Utilities.pathStartsWith(name, path)); 34 return navigation.generalDirectories.some(name => Utilities.pathStartsWith(name, path)); 38 return navigation.featurePreview.some(name => Utilities.pathStartsWith(name, path)); 42 return navigation.previewDirectories.some(name => Utilities.pathStartsWith(name, path)); 46 return navigation.learnDirectories.some(name => Utilities.pathStartsWith(name, path));
|
| /expo/packages/expo-router/src/link/ |
| H A D | useLoadedNavigation.ts | 11 const navigation = useNavigation(); constant 13 const pending = useRef<((navigation: GenericNavigation) => void)[]>([]); 27 callback(navigation); 30 }, [navigation]); 39 (fn: (navigation: GenericNavigation) => void) => { 52 const [navigation, setNavigation] = useState<GenericNavigation | null>(null); constant 59 return navigation;
|
| /expo/packages/expo-router/src/ |
| H A D | useFocusEffect.ts | 17 const navigation = useOptionalNavigation(); constant 34 if (!navigation) { 80 if (navigation.isFocused()) { 85 const unsubscribeFocus = navigation.addListener('focus', () => { 100 const unsubscribeBlur = navigation.addListener('blur', () => { 117 }, [effect, navigation]);
|
| /expo/docs/pages/versions/unversioned/sdk/ |
| H A D | navigation-bar.mdx | 3 description: A library that provides access to various interactions with the native navigation bar … 4 sourceCodeUrl: 'https://github.com/expo/expo/tree/main/packages/expo-navigation-bar' 5 packageName: 'expo-navigation-bar' 12 **`expo-navigation-bar`** enables you to modify and observe the native navigation bar on Android de… 27 import * as NavigationBar from 'expo-navigation-bar'; 30 <APISection packageName="expo-navigation-bar" apiName="NavigationBar" />
|
| /expo/docs/pages/versions/v47.0.0/sdk/ |
| H A D | navigation-bar.mdx | 3 description: A library that provides access to various interactions with the native navigation bar … 4 sourceCodeUrl: 'https://github.com/expo/expo/tree/sdk-47/packages/expo-navigation-bar' 5 packageName: 'expo-navigation-bar' 12 **`expo-navigation-bar`** enables you to modify and observe the native navigation bar on Android de… 27 import * as NavigationBar from 'expo-navigation-bar'; 30 <APISection packageName="expo-navigation-bar" apiName="NavigationBar" />
|
| /expo/docs/pages/versions/v48.0.0/sdk/ |
| H A D | navigation-bar.mdx | 3 description: A library that provides access to various interactions with the native navigation bar … 4 sourceCodeUrl: 'https://github.com/expo/expo/tree/sdk-48/packages/expo-navigation-bar' 5 packageName: 'expo-navigation-bar' 12 **`expo-navigation-bar`** enables you to modify and observe the native navigation bar on Android de… 27 import * as NavigationBar from 'expo-navigation-bar'; 30 <APISection packageName="expo-navigation-bar" apiName="NavigationBar" />
|
| /expo/docs/pages/versions/v49.0.0/sdk/ |
| H A D | navigation-bar.mdx | 3 description: A library that provides access to various interactions with the native navigation bar … 4 sourceCodeUrl: 'https://github.com/expo/expo/tree/sdk-49/packages/expo-navigation-bar' 5 packageName: 'expo-navigation-bar' 12 **`expo-navigation-bar`** enables you to modify and observe the native navigation bar on Android de… 27 import * as NavigationBar from 'expo-navigation-bar'; 30 <APISection packageName="expo-navigation-bar" apiName="NavigationBar" />
|
| /expo/docs/pages/versions/v46.0.0/sdk/ |
| H A D | navigation-bar.mdx | 3 description: A library that provides access to various interactions with the native navigation bar … 4 sourceCodeUrl: 'https://github.com/expo/expo/tree/sdk-46/packages/expo-navigation-bar' 5 packageName: 'expo-navigation-bar' 12 **`expo-navigation-bar`** enables you to modify and observe the native navigation bar on Android de… 27 import * as NavigationBar from 'expo-navigation-bar'; 30 <APISection packageName="expo-navigation-bar" apiName="NavigationBar" />
|
| /expo/docs/ |
| H A D | next.config.js | 25 const navigation = readJsonSync('./public/static/constants/navigation.json'); constant 117 ...navigation.homeDirectories, 118 ...navigation.learnDirectories, 119 ...navigation.generalDirectories, 120 ...navigation.referenceDirectories.filter(dir => dir === 'versions'), 124 pathsHidden: [...navigation.previewDirectories, ...navigation.archiveDirectories],
|
| /expo/packages/expo-router/build/link/ |
| H A D | useLoadedNavigation.js | 10 const navigation = (0, native_1.useNavigation)(); 24 callback(navigation); 27 }, [navigation]); 43 const [navigation, setNavigation] = (0, react_1.useState)(null); 48 return navigation;
|
| /expo/home/components/ |
| H A D | NavigationEvents.tsx | 1 import { useNavigation } from '@react-navigation/native'; 5 const navigation = useNavigation(); 8 const unsubscribe = navigation.addListener('focus', () => { 16 }, [navigation]);
|
| /expo/apps/native-component-list/src/navigation/ |
| H A D | StackConfig.tsx | 2 import { BottomTabNavigationProp } from '@react-navigation/bottom-tabs'; 3 import { HeaderStyleInterpolators } from '@react-navigation/stack'; 29 navigation, 31 navigation: BottomTabNavigationProp<any>; 43 onPress={() => navigation.navigate('searchNavigator')}
|
| H A D | MainNavigators.tsx | 1 import { BottomTabNavigationOptions, BottomTabNavigationProp } from '@react-navigation/bottom-tabs'; 2 import { DrawerNavigationOptions } from '@react-navigation/drawer'; 3 import { PathConfig } from '@react-navigation/native'; 4 import { StackNavigationOptions } from '@react-navigation/stack'; 16 navigator: ((props: { navigation: BottomTabNavigationProp<any> }) => JSX.Element) & {
|
| /expo/apps/native-component-list/src/screens/ |
| H A D | SafeAreaContextScreen.tsx | 1 import { StackNavigationProp } from '@react-navigation/stack'; 13 navigation, 15 navigation: StackNavigationProp<any>; 18 navigation.setOptions({ 22 }, [navigation]); 44 <Button title="Go back to APIs" onPress={() => navigation.goBack()} /> 62 <Button title="Go back to APIs" onPress={() => navigation.goBack()} />
|
| /expo/apps/native-component-list/src/screens/Contacts/ |
| H A D | ContactsScreen.tsx | 1 import { useFocusEffect } from '@react-navigation/native'; 2 import { StackNavigationProp } from '@react-navigation/stack'; 20 navigation: StackNavigationProp<StackParams>; 25 export default function ContactsScreen({ navigation }: Props) { 27 navigation.setOptions({ 42 }, [navigation]); 70 return <ContactsView navigation={navigation} />; 73 function ContactsView({ navigation }: Props) { 82 navigation.navigate('ContactDetail', { id }); 84 [navigation]
|
| /expo/packages/expo-router/build/ |
| H A D | useFocusEffect.js | 39 const navigation = (0, useLoadedNavigation_1.useOptionalNavigation)(); 52 if (!navigation) { 92 if (navigation.isFocused()) { 96 const unsubscribeFocus = navigation.addListener('focus', () => { 108 const unsubscribeBlur = navigation.addListener('blur', () => { 122 }, [effect, navigation]);
|
| /expo/packages/expo-router/build/layouts/ |
| H A D | Drawer.d.ts | 15 navigation: any; 25 navigation: any; 42 navigation: any; 52 navigation: any; 65 navigation: any; 75 navigation: any; 92 navigation: any; 102 navigation: any;
|
| H A D | Stack.d.ts | 16 navigation: any; 27 navigation: any; 41 navigation: any; 52 navigation: any; 66 navigation: any; 77 navigation: any; 91 navigation: any; 102 navigation: any;
|
| /expo/home/screens/BranchListScreen/ |
| H A D | BranchList.tsx | 1 import { useNavigation } from '@react-navigation/native'; 2 import { StackNavigationProp } from '@react-navigation/stack'; 9 import { HomeStackRoutes } from '../../navigation/Navigation.types'; 30 const navigation = useNavigation<StackNavigationProp<HomeStackRoutes>>(); 56 navigation.setOptions({ 60 }, [navigation, data?.app?.byId]);
|
| /expo/packages/expo-router/build/views/ |
| H A D | Screen.js | 12 const navigation = (0, useNavigation_1.useNavigation)(name); 18 navigation.setOptions(options); 20 }, [navigation, options]);
|
| /expo/apps/sandbox/ |
| H A D | metro.config.js | 20 /node_modules\/@react-navigation\/native-stack\/node_modules\/@react-navigation\//, 21 /packages\/expo-router\/node_modules\/@react-navigation/,
|
| /expo/packages/expo-print/ios/ |
| H A D | ExpoWKPDFRenderer.swift | 31 public func webView(_ webView: WKWebView, didFinish navigation: WKNavigation) { in webView() 32 guard htmlNavigation == navigation else { in webView() 40 public func webView(webView: WKWebView, navigation: WKNavigation) { in webView() 41 guard htmlNavigation == navigation else { in webView() 49 …public func webView(_ webView: WKWebView, didFail navigation: WKNavigation, withError error: Error… in webView()
|
| /expo/ios/versioned/sdk49/ExpoPrint/ |
| H A D | ExpoWKPDFRenderer.swift | 31 public func webView(_ webView: WKWebView, didFinish navigation: WKNavigation) { in webView() 32 guard htmlNavigation == navigation else { in webView() 40 public func webView(webView: WKWebView, navigation: WKNavigation) { in webView() 41 guard htmlNavigation == navigation else { in webView() 49 …public func webView(_ webView: WKWebView, didFail navigation: WKNavigation, withError error: Error… in webView()
|
| /expo/home/screens/HomeScreen/ |
| H A D | DevelopmentServersOpenQR.tsx | 2 import { NavigationProp, useNavigation } from '@react-navigation/native'; 7 import { ModalStackRoutes } from '../../navigation/Navigation.types'; 16 const navigation = useNavigation<NavigationProp<ModalStackRoutes>>(); 20 navigation.navigate('QRCode');
|