You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Returns themed color object that responds to light/dark mode
146
156
```
147
157
@@ -150,11 +160,13 @@ const Theme = useTheme()
150
160
Animations use React Native's `Animated` API, preferring the native driver for GPU-accelerated properties (opacity, transforms) and falling back to `useNativeDriver: false` when animating unsupported properties like colors.
151
161
152
162
**Modal Animation** (native driver):
163
+
153
164
- Opening: Spring physics (damping: 25, stiffness: 220)
-`useAnimatedValue` hook for color interpolation on press states
159
171
-`Animated.createAnimatedComponent(Pressable)` for interactive elements
160
172
- Color transitions between normal/pressed states
@@ -164,6 +176,7 @@ Animations use React Native's `Animated` API, preferring the native driver for G
164
176
**RouterController** manages navigation between views defined in `RouterControllerState` (see `packages/core/src/controllers/RouterController.ts` for the up-to-date list of route IDs).
165
177
166
178
View categories:
179
+
167
180
- Account flows (account overview and default account views)
0 commit comments