New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@umituz/react-native-ai-creations

Package Overview
Dependencies
Maintainers
1
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

@umituz/react-native-ai-creations

AI-generated creations gallery with filtering, sharing, and management for React Native apps

latest
Source
npmnpm
Version
1.4.11
Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

@umituz/react-native-ai-creations

AI-generated creations gallery with filtering, sharing, and management for React Native apps.

Features

  • Gallery screen with grid/list view
  • Filtering by creation type
  • Share functionality
  • Delete with confirmation
  • Pull-to-refresh support
  • Home card component for quick access
  • Design system integration
  • Firestore integration
  • TanStack Query for data fetching

Installation

npm install @umituz/react-native-ai-creations

Peer Dependencies

npm install @umituz/react-native-design-system @umituz/react-native-firestore @umituz/react-native-localization @umituz/react-native-sharing @tanstack/react-query firebase

Usage

import { CreationsGalleryScreen } from '@umituz/react-native-ai-creations';

// In your navigation
<Stack.Screen
  name="CreationsGallery"
  component={CreationsGalleryScreen}
/>

Home Card

import { CreationsHomeCard } from '@umituz/react-native-ai-creations';

// In your home screen
<CreationsHomeCard
  onPress={() => navigation.navigate('CreationsGallery')}
/>

Custom Hook

import { useCreations, useDeleteCreation } from '@umituz/react-native-ai-creations';

function MyComponent() {
  const { data, isLoading, refetch } = useCreations();
  const deleteMutation = useDeleteCreation();

  // Use data...
}

Configuration

import { CreationsProvider, CreationsConfig } from '@umituz/react-native-ai-creations';

const config: CreationsConfig = {
  collectionPath: 'users/{userId}/creations',
  types: [
    { id: 'santa', label: 'santa.types.santa', icon: '🎅' },
    { id: 'elf', label: 'santa.types.elf', icon: '🧝' },
  ],
  translations: {
    title: 'creations.title',
    empty: 'creations.empty',
    delete: 'creations.delete',
  },
};

<CreationsProvider config={config}>
  <App />
</CreationsProvider>

License

MIT

Keywords

react-native

FAQs

Package last updated on 23 Dec 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts