@umituz/react-native-ai-creations 1.3.13 → 1.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umituz/react-native-ai-creations",
3
- "version": "1.3.13",
3
+ "version": "1.4.0",
4
4
  "description": "AI-generated creations gallery with filtering, sharing, and management for React Native apps",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -1,5 +1,5 @@
1
1
  import React, { useMemo, useCallback, useState } from "react";
2
- import { View, StyleSheet } from "react-native";
2
+ import { View, StyleSheet, ActivityIndicator } from "react-native";
3
3
  import { useAppDesignTokens } from "@umituz/react-native-design-system";
4
4
  import { useSharing } from "@umituz/react-native-sharing";
5
5
  import { useSafeAreaInsets } from "react-native-safe-area-context";
@@ -156,6 +156,11 @@ export function CreationsGalleryScreen({
156
156
 
157
157
 
158
158
 
159
+ import { View, StyleSheet, ActivityIndicator } from "react-native";
160
+
161
+ // ... (logic remains same, just adding styles below)
162
+
159
163
  const useStyles = (tokens: any) => StyleSheet.create({
160
164
  container: { flex: 1, backgroundColor: tokens.colors.background },
165
+ center: { justifyContent: 'center', alignItems: 'center' },
161
166
  });