diff options
author | Eric Bailey <git@esb.lol> | 2025-06-24 22:03:23 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-06-24 22:03:23 -0500 |
commit | 4c1515169af81f5eb861e476d2bc07f17c8635fd (patch) | |
tree | 37be0de4769da65b3afde1cd1f890afecde14f3b /src/App.native.tsx | |
parent | cd820709b611a0381222a34d2bc6ff49fa380452 (diff) | |
download | voidsky-4c1515169af81f5eb861e476d2bc07f17c8635fd.tar.zst |
Tooltip (#8555)
* Working overlay, WIP * Ok working with no overlay and global gesture handler * Ok pretty good on native * Cleanup * Cleanup * add animation * add transform origin to animation * Some a11y * Improve colors * Explicitly wrap gesture handler * Add easier abstraction * Web * Fix animation * Cleanup and remove provider * Include demo for now * Ok diff interface to avoid collapsed views * Use dimensions hook * Adjust overlap, clarify intent of consts * Revert testing edits --------- Co-authored-by: Samuel Newman <mozzius@protonmail.com>
Diffstat (limited to 'src/App.native.tsx')
-rw-r--r-- | src/App.native.tsx | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/src/App.native.tsx b/src/App.native.tsx index 81d4a870e..c42b11746 100644 --- a/src/App.native.tsx +++ b/src/App.native.tsx @@ -33,6 +33,7 @@ import { ensureGeolocationResolved, Provider as GeolocationProvider, } from '#/state/geolocation' +import {GlobalGestureEventsProvider} from '#/state/global-gesture-events' import {Provider as HomeBadgeProvider} from '#/state/home-badge' import {Provider as InvitesStateProvider} from '#/state/invites' import {Provider as LightboxStateProvider} from '#/state/lightbox' @@ -154,11 +155,13 @@ function InnerApp() { <HideBottomBarBorderProvider> <GestureHandlerRootView style={s.h100pct}> - <IntentDialogProvider> - <TestCtrls /> - <Shell /> - <NuxDialogs /> - </IntentDialogProvider> + <GlobalGestureEventsProvider> + <IntentDialogProvider> + <TestCtrls /> + <Shell /> + <NuxDialogs /> + </IntentDialogProvider> + </GlobalGestureEventsProvider> </GestureHandlerRootView> </HideBottomBarBorderProvider> </ServiceAccountManager> |