From f83335f1102ecb451ea4ee53f35f711f528956c8 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Wed, 18 Jun 2025 09:53:34 -0500 Subject: Move dialog outputs inside navigation context (#8511) * Move all dialogs within NavigationContent on native * Ok leave old ModalsContainer alone for now * Do the same on web * Gate browser consent dialog just to be clear --- .../shell/createNativeStackNavigatorWithAuth.tsx | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'src/view/shell/createNativeStackNavigatorWithAuth.tsx') diff --git a/src/view/shell/createNativeStackNavigatorWithAuth.tsx b/src/view/shell/createNativeStackNavigatorWithAuth.tsx index 1c32971d4..b16f39bbf 100644 --- a/src/view/shell/createNativeStackNavigatorWithAuth.tsx +++ b/src/view/shell/createNativeStackNavigatorWithAuth.tsx @@ -40,6 +40,14 @@ import {Onboarding} from '#/screens/Onboarding' import {SignupQueued} from '#/screens/SignupQueued' import {Takendown} from '#/screens/Takendown' import {atoms as a, useLayoutBreakpoints} from '#/alf' +import {EmailDialog} from '#/components/dialogs/EmailDialog' +import {InAppBrowserConsentDialog} from '#/components/dialogs/InAppBrowserConsent' +import {LinkWarningDialog} from '#/components/dialogs/LinkWarning' +import {MutedWordsDialog} from '#/components/dialogs/MutedWords' +import {NuxDialogs} from '#/components/dialogs/nuxs' +import {SigninDialog} from '#/components/dialogs/Signin' +import {Outlet as PortalOutlet} from '#/components/Portal' +import {BottomSheetOutlet} from '#/../modules/bottom-sheet' import {BottomBarWeb} from './bottom-bar/BottomBarWeb' import {DesktopLeftNav} from './desktop/LeftNav' import {DesktopRightNav} from './desktop/RightNav' @@ -167,6 +175,20 @@ function NativeStackNavigator({ {!isMobile && } )} + + {/* Start: individual dialogs and outlets */} + + + + + {!isWeb && } + + + {/* End: individual dialogs and outlets */} + + {/* Start: dialog controllers */} + + {/* End: dialog controllers */} ) } -- cgit 1.4.1