JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 26
  • Score
    100M100P100Q92698F
  • License MIT

A Skia and Reanimated based shader, creating a Apple like Ai Orb/Sphere

Package Exports

  • react-native-magic-orb
  • react-native-magic-orb/package.json

Readme

react-native-magic-orb

npm version npm downloads License: MIT

A beautiful, animated orb/sphere component for React Native — powered by Skia shaders and Reanimated. Inspired by the Apple Intelligence orb animation.


https://github.com/user-attachments/assets/ae25a2ed-0f61-4373-bbcb-5c3ddecc4c92


Prerequisites

This library requires the following peer dependencies to be installed in your project:

Installation

npm install react-native-magic-orb

Usage

import { Orb } from 'react-native-magic-orb';

// Basic usage
<Orb />

// With a preset color scheme
<Orb colorScheme="aurora" size={250} />

// With custom colors
<Orb colors={['#ff0080', '#7928ca', '#0070f3']} size={300} />

// Fully configured
<Orb
  colorScheme="cyberpunk"
  size={300}
  speed={1.2}
  wobbleSpeed={0.6}
  intensity={0.5}
  noiseScale={0.9}
  innerRadius={0.55}
/>

Props

Prop Type Default Description
colorScheme ColorSchemeName Preset color palette. Overrides colors when set.
colors [string, string, string] ['#339999', '#194c4c', '#7df7ff'] Array of 3 hex color strings for the orb.
size number 300 Width and height of the orb in pixels.
speed number 1.0 Overall animation speed multiplier.
wobbleSpeed number 0.5 Speed of the noise/wobble animation.
intensity number 0.4 Intensity of the glow and light effects.
noiseScale number 0.85 Scale of the surface noise detail.
innerRadius number 0.6 Radius of the inner dark core (0–1).
style ViewStyle Additional styles applied to the container.

Color Schemes

Name Description
default Teal/cyan
aurora Green to violet
fire Red to yellow
cyberpunk Cyan to magenta
ocean Deep blue
nebula Dark indigo to purple
toxic Neon green

Contributing

License

MIT