diff options
author | Eric Bailey <git@esb.lol> | 2025-08-14 09:51:40 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-08-14 09:51:40 -0500 |
commit | 7b2e61bf4dd1e10ade956b2ac091dbb44d41d525 (patch) | |
tree | a29f4b3543bb4846e97af2d4425e311c86826947 /src/App.native.tsx | |
parent | 221623f55aa6c1bbe699c8d409832da110923c76 (diff) | |
download | voidsky-7b2e61bf4dd1e10ade956b2ac091dbb44d41d525.tar.zst |
Integrate Sonner for toasts (#8839)
* Integrate Sonner for toasts * Fix animation on iOS * Refactor API * Update e2e file
Diffstat (limited to 'src/App.native.tsx')
-rw-r--r-- | src/App.native.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/App.native.tsx b/src/App.native.tsx index 0b46da9dd..e22ab3f0e 100644 --- a/src/App.native.tsx +++ b/src/App.native.tsx @@ -74,6 +74,7 @@ import {Provider as IntentDialogProvider} from '#/components/intents/IntentDialo import {Provider as PolicyUpdateOverlayProvider} from '#/components/PolicyUpdateOverlay' import {Provider as PortalProvider} from '#/components/Portal' import {Provider as VideoVolumeProvider} from '#/components/Post/Embed/VideoEmbed/VideoVolumeContext' +import {ToastOutlet} from '#/components/Toast' import {Splash} from '#/Splash' import {BottomSheetProvider} from '../modules/bottom-sheet' import {BackgroundNotificationPreferencesProvider} from '../modules/expo-background-notification-handler/src/BackgroundNotificationHandlerProvider' @@ -165,6 +166,7 @@ function InnerApp() { <TestCtrls /> <Shell /> <NuxDialogs /> + <ToastOutlet /> </IntentDialogProvider> </GlobalGestureEventsProvider> </GestureHandlerRootView> |