| /expo/android/expoview/src/main/java/com/facebook/react/views/modal/ |
| H A D | RNGHModalUtils.java | 1 package com.facebook.react.views.modal; 14 …public static void dialogRootViewGroupOnChildStartedNativeGesture(ViewGroup modal, MotionEvent and… in dialogRootViewGroupOnChildStartedNativeGesture() argument 15 ((ReactModalHostView.DialogRootViewGroup) modal).onChildStartedNativeGesture(androidEvent); in dialogRootViewGroupOnChildStartedNativeGesture() 18 public static boolean isDialogRootViewGroup(ViewParent modal) { in isDialogRootViewGroup() argument 19 return modal instanceof ReactModalHostView.DialogRootViewGroup; in isDialogRootViewGroup()
|
| /expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/com/facebook/react/views/modal/ |
| H A D | RNGHModalUtils.java | 1 package abi49_0_0.com.facebook.react.views.modal; 14 …public static void dialogRootViewGroupOnChildStartedNativeGesture(ViewGroup modal, MotionEvent and… in dialogRootViewGroupOnChildStartedNativeGesture() argument 15 ((ReactModalHostView.DialogRootViewGroup) modal).onChildStartedNativeGesture(androidEvent); in dialogRootViewGroupOnChildStartedNativeGesture() 18 public static boolean isDialogRootViewGroup(ViewParent modal) { in isDialogRootViewGroup() argument 19 return modal instanceof ReactModalHostView.DialogRootViewGroup; in isDialogRootViewGroup()
|
| /expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/com/facebook/react/views/modal/ |
| H A D | RNGHModalUtils.java | 1 package abi48_0_0.com.facebook.react.views.modal; 14 …public static void dialogRootViewGroupOnChildStartedNativeGesture(ViewGroup modal, MotionEvent and… in dialogRootViewGroupOnChildStartedNativeGesture() argument 15 ((ReactModalHostView.DialogRootViewGroup) modal).onChildStartedNativeGesture(androidEvent); in dialogRootViewGroupOnChildStartedNativeGesture() 18 public static boolean isDialogRootViewGroup(ViewParent modal) { in isDialogRootViewGroup() argument 19 return modal instanceof ReactModalHostView.DialogRootViewGroup; in isDialogRootViewGroup()
|
| /expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/com/facebook/react/views/modal/ |
| H A D | RNGHModalUtils.java | 1 package abi47_0_0.com.facebook.react.views.modal; 14 …public static void dialogRootViewGroupOnChildStartedNativeGesture(ViewGroup modal, MotionEvent and… in dialogRootViewGroupOnChildStartedNativeGesture() argument 15 ((ReactModalHostView.DialogRootViewGroup) modal).onChildStartedNativeGesture(androidEvent); in dialogRootViewGroupOnChildStartedNativeGesture() 18 public static boolean isDialogRootViewGroup(ViewParent modal) { in isDialogRootViewGroup() argument 19 return modal instanceof ReactModalHostView.DialogRootViewGroup; in isDialogRootViewGroup()
|
| /expo/docs/pages/router/advanced/ |
| H A D | modals.mdx | 14 <Video file="expo-router/modal.mp4" /> 16 You can implement a modal by creating a root layout route that renders certain routes as modals. 18 <FileTree files={['app/_layout.js', 'app/home.js', 'app/modal.js']} /> 20 …/\_layout.js** can present components as modals. Add a new route called **modal** that is used to … 35 name="modal" 37 // Set the presentation mode to modal for our modal route. 38 presentation: 'modal', 53 <Link href="/modal">Present modal</Link> 59 Now create a modal that adds a back button when the modal has lost its previous context and must be… 61 ```jsx app/modal.js [all …]
|
| /expo/ios/versioned-react-native/ABI48_0_0/ReactNative/ReactCommon/react/renderer/components/modal/ |
| H A D | BUCK | 18 name = "modal", 32 prefix = "react/renderer/components/modal", 44 prefix = "react/renderer/components/modal", 60 prefix = "react/renderer/components/modal",
|
| /expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/react/renderer/components/modal/ |
| H A D | BUCK | 18 name = "modal", 32 prefix = "react/renderer/components/modal", 44 prefix = "react/renderer/components/modal", 60 prefix = "react/renderer/components/modal",
|
| /expo/ios/versioned-react-native/ABI47_0_0/ReactNative/ReactCommon/react/renderer/components/modal/ |
| H A D | BUCK | 18 name = "modal", 32 prefix = "react/renderer/components/modal", 42 prefix = "react/renderer/components/modal", 58 prefix = "react/renderer/components/modal",
|
| /expo/packages/expo-router/src/__tests__/ |
| H A D | navigation.test.tsx | 350 '(group)/modal': () => <Text />, 358 act(() => router.push('/(group)/modal')); 359 expect(screen).toHavePathname('/modal'); 381 '(group)/modal': () => <Text />, 389 act(() => router.push('/(group)/modal')); 390 expect(screen).toHavePathname('/modal'); 496 '(group)/modal': () => <Text />, 505 expect(screen).toHavePathname('/modal'); 513 expect(screen).toHavePathname('/modal'); 535 '(group)/modal': () => <Text />, [all …]
|
| /expo/templates/expo-template-tabs/app/ |
| H A D | _layout.tsx | 14 // Ensure that reloading on `/modal` keeps a back button present. 52 <Stack.Screen name="modal" options={{ presentation: 'modal' }} />
|
| H A D | modal.tsx | 12 <EditScreenInfo path="app/modal.tsx" /> 14 {/* Use a light status bar on iOS to account for the black space above the modal */}
|
| /expo/docs/pages/tutorial/ |
| H A D | create-a-modal.mdx | 2 title: Create a modal 16 In this chapter, we'll create a modal that shows an emoji picker list. 272 ## Create an emoji picker modal 277 - `onClose`: a function that closes the modal. 357 label="Create a modal" 358 templateId="tutorial/04-modal/App" 366 'components/EmojiPicker.js': 'tutorial/04-modal/EmojiPicker.js', 403 /* @info Update functions to control the modal's visibility.*/ 432 alt="A modal working on all platforms" 433 src="/static/images/tutorial/modal-creation.jpg" [all …]
|
| /expo/packages/expo-dev-launcher/bundle/components/__tests__/ |
| H A D | DeepLinkModal.test.tsx | 29 test('retrieves pending deep link on mount and displays in modal', async () => { 45 test('shows dev sessions in modal', async () => { 61 test('packagers in modal call loadApp() when pressed', async () => {
|
| /expo/ios/versioned-react-native/ABI47_0_0/ReactNative/ReactCommon/react/renderer/element/ |
| H A D | BUCK | 51 react_native_xplat_target("react/renderer/components/modal:modal"),
|
| /expo/ios/versioned-react-native/ABI48_0_0/ReactNative/ReactCommon/react/renderer/element/ |
| H A D | BUCK | 51 react_native_xplat_target("react/renderer/components/modal:modal"),
|
| /expo/apps/native-component-list/src/screens/ |
| H A D | ModalScreen.tsx | 60 title="Show modal (slide)" 70 title="Show modal (fade)"
|
| /expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/react/renderer/element/ |
| H A D | BUCK | 53 react_native_xplat_target("react/renderer/components/modal:modal"),
|
| /expo/templates/expo-template-tabs/app/(tabs)/ |
| H A D | _layout.tsx | 31 <Link href="/modal" asChild>
|
| /expo/apps/native-component-list/src/navigation/ |
| H A D | RootNavigation.tsx | 39 <Switch.Navigator screenOptions={{ presentation: 'modal', headerShown: false }}>
|
| /expo/ios/vendored/sdk47/react-native-screens/ios/ |
| H A D | ABI47_0_0RNSScreen.mm | 152 // modal to push type, this may cause memory leak, we warn about that as well. 478 // level gesture recognizer. In this case by the modal dismiss gesture. 482 // To test this behavior one need to open a dismissable modal and start 484 // will never go back from highlighted state even when the modal start sliding 555 // Let's assume the view has had _stackPresentation == <some modal stack presentation> set 556 …// before below line was executed. Then, when instantiated again (with the same modal presentation) 761 // self.navigationController might be null when we are dismissing a modal 847 // shown as a native modal, as the final dimensions of the modal on iOS 12+ are shorter than the 950 …// we don't want to allow controlling of status bar appearance when we present non-fullScreen modal 954 // for screen orientation, we need to start the search again from that modal [all …]
|
| /expo/ios/vendored/sdk48/react-native-screens/ios/ |
| H A D | ABI48_0_0RNSScreen.mm | 153 // modal to push type, this may cause memory leak, we warn about that as well. 479 // level gesture recognizer. In this case by the modal dismiss gesture. 483 // To test this behavior one need to open a dismissable modal and start 485 // will never go back from highlighted state even when the modal start sliding 556 // Let's assume the view has had _stackPresentation == <some modal stack presentation> set 557 …// before below line was executed. Then, when instantiated again (with the same modal presentation) 762 // self.navigationController might be null when we are dismissing a modal 848 // shown as a native modal, as the final dimensions of the modal on iOS 12+ are shorter than the 951 …// we don't want to allow controlling of status bar appearance when we present non-fullScreen modal 955 // for screen orientation, we need to start the search again from that modal [all …]
|
| /expo/ios/vendored/sdk49/react-native-screens/ios/ |
| H A D | ABI49_0_0RNSScreen.mm | 156 // modal to push type, this may cause memory leak, we warn about that as well. 482 // level gesture recognizer. In this case by the modal dismiss gesture. 486 // To test this behavior one need to open a dismissable modal and start 488 // will never go back from highlighted state even when the modal start sliding 613 // Let's assume the view has had _stackPresentation == <some modal stack presentation> set 614 …// before below line was executed. Then, when instantiated again (with the same modal presentation) 847 // self.navigationController might be null when we are dismissing a modal 933 // shown as a native modal, as the final dimensions of the modal on iOS 12+ are shorter than the 1036 …// we don't want to allow controlling of status bar appearance when we present non-fullScreen modal 1040 // for screen orientation, we need to start the search again from that modal [all …]
|
| /expo/ios/vendored/unversioned/react-native-screens/ios/ |
| H A D | RNSScreen.mm | 156 // modal to push type, this may cause memory leak, we warn about that as well. 482 // level gesture recognizer. In this case by the modal dismiss gesture. 486 // To test this behavior one need to open a dismissable modal and start 488 // will never go back from highlighted state even when the modal start sliding 613 // Let's assume the view has had _stackPresentation == <some modal stack presentation> set 614 …// before below line was executed. Then, when instantiated again (with the same modal presentation) 847 // self.navigationController might be null when we are dismissing a modal 933 // shown as a native modal, as the final dimensions of the modal on iOS 12+ are shorter than the 1036 …// we don't want to allow controlling of status bar appearance when we present non-fullScreen modal 1040 // for screen orientation, we need to start the search again from that modal [all …]
|
| /expo/ios/vendored/unversioned/react-native-reanimated/ios/LayoutReanimation/ |
| H A D | REAScreensHelper.m | 43 // case for modal with header
|
| /expo/ios/versioned/sdk47/EXLocation/EXLocation/Requesters/ |
| H A D | ABI47_0_0EXBackgroundLocationPermissionRequester.m | 55 …`UIApplicationDidBecomeActiveNotification` event which is called when permissions modal disappears.
|