- App.tsx: full navigation (Auth stack + Main tabs with 5 screens) - Auth: LoginScreen, RegisterScreen, ForgotPasswordScreen - HomeScreen: dashboard with IoT metrics, weather widget, alerts, quick actions, sensors - MapScreen: interactive map with layer toggles (6 layers) - MarketplaceScreen: categories (6), products (5), search - ChatScreen: AI chat with quick prompts (4), bot responses - ProfileScreen: user info, stats, menu (9 items), logout - AlertsScreen: alert list with severity, acknowledge - SensorsScreen: sensor list with type filters (6 types), search - ZonesScreen: zone cards with stats - SettingsScreen: language picker (FR/EN/ES/DE), privacy, about - Stores: iotStore (sensors, zones, alerts), notificationStore, uiStore + i18n - Hooks: useSensors, useAlerts, useNotifications, useLocation - Components: Card, Button, LoadingSpinner, ErrorBoundary, Header - Services: iotService, notificationService (with axios API client) - Utils: formatters (temp, AQI, noise, dates), validators (email, password, IBAN) - Theme: colors.ts with full design system (Blue Ocean palette) - Ditto: fixed MongoDB connection, new JWT secrets, official gateway image
61 lines
2.2 KiB
JavaScript
61 lines
2.2 KiB
JavaScript
'use strict';
|
|
|
|
export { createAnimatedComponent } from './createAnimatedComponent';
|
|
export { AnimatedText as Text } from './reanimated2/component/Text';
|
|
export { AnimatedView as View } from './reanimated2/component/View';
|
|
export { AnimatedScrollView as ScrollView } from './reanimated2/component/ScrollView';
|
|
export { AnimatedImage as Image } from './reanimated2/component/Image';
|
|
export { ReanimatedFlatList as FlatList } from './reanimated2/component/FlatList';
|
|
export { addWhitelistedNativeProps, addWhitelistedUIProps } from './ConfigHelper';
|
|
/**
|
|
* @deprecated Please import `Extrapolate` directly from `react-native-reanimated` instead of `Animated` namespace.
|
|
*/
|
|
|
|
/**
|
|
* @deprecated Please import `SharedValue` directly from `react-native-reanimated` instead of `Animated` namespace.
|
|
*/
|
|
|
|
/**
|
|
* @deprecated Please import `DerivedValue` directly from `react-native-reanimated` instead of `Animated` namespace.
|
|
*/
|
|
|
|
/**
|
|
* @deprecated Please import `Adaptable` directly from `react-native-reanimated` instead of `Animated` namespace.
|
|
*/
|
|
|
|
/**
|
|
* @deprecated Please import `TransformStyleTypes` directly from `react-native-reanimated` instead of `Animated` namespace.
|
|
* */
|
|
|
|
/**
|
|
* @deprecated Please import `AdaptTransforms` directly from `react-native-reanimated` instead of `Animated` namespace.
|
|
* */
|
|
|
|
/**
|
|
* @deprecated Please import `AnimatedTransform` directly from `react-native-reanimated` instead of `Animated` namespace.
|
|
*/
|
|
|
|
/**
|
|
* @deprecated Please import `AnimateStyle` directly from `react-native-reanimated` instead of `Animated` namespace.
|
|
* */
|
|
|
|
/**
|
|
* @deprecated Please import `StylesOrDefault` directly from `react-native-reanimated` instead of `Animated` namespace.
|
|
* */
|
|
|
|
/**
|
|
* @deprecated Please import `AnimateProps` directly from `react-native-reanimated` instead of `Animated` namespace.
|
|
* */
|
|
|
|
/**
|
|
* @deprecated Please import `EasingFunction` directly from `react-native-reanimated` instead of `Animated` namespace.
|
|
* */
|
|
|
|
/**
|
|
* @deprecated Please import `AnimatedScrollViewProps` directly from `react-native-reanimated` instead of `Animated` namespace.
|
|
* */
|
|
|
|
/**
|
|
* @deprecated Please import `FlatListPropsWithLayout` directly from `react-native-reanimated` instead of `Animated` namespace.
|
|
* */
|
|
//# sourceMappingURL=Animated.js.map
|