npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@frosted-ui/react-native

v0.0.1-canary.104

Published

A beautiful, accessible component library for React Native with a built-in design system.

Readme

@frosted-ui/react-native

A beautiful, accessible component library for React Native with a built-in design system.

Installation

For Bare React Native Projects

  1. Install the package and its peer dependencies:
npm install @frosted-ui/react-native
# or
yarn add @frosted-ui/react-native
# or
pnpm add @frosted-ui/react-native
  1. Install peer dependencies:
npm install react react-native react-native-reanimated react-native-safe-area-context react-native-screens react-native-svg lucide-react-native
# or
yarn add react react-native react-native-reanimated react-native-safe-area-context react-native-screens react-native-svg lucide-react-native
# or
pnpm add react react-native react-native-reanimated react-native-safe-area-context react-native-screens react-native-svg lucide-react-native
  1. Setup React Native Reanimated: Follow the React Native Reanimated installation guide.

  2. Setup React Native Screens: Follow the React Native Screens installation guide.

  3. Setup React Native SVG: Follow the React Native SVG installation guide.

For Expo Projects

The package works with Expo projects as well. Follow the same installation steps above, and Expo will handle the native module linking automatically.

Usage

import { Button, Text, ThemeProvider } from '@frosted-ui/react-native';

export default function App() {
  return (
    <ThemeProvider>
      <Button variant="surface" size="2">
        <Text>Hello World</Text>
      </Button>
    </ThemeProvider>
  );
}

Theme Management

The library provides a ThemeProvider for managing light/dark mode:

import { ThemeProvider, useTheme } from '@frosted-ui/react-native';

function MyComponent() {
  const { colorScheme, toggleColorScheme } = useTheme();

  return (
    <Button onPress={toggleColorScheme}>
      <Text>Current theme: {colorScheme}</Text>
    </Button>
  );
}

export default function App() {
  return (
    <ThemeProvider>
      <MyComponent />
    </ThemeProvider>
  );
}

Accessing Theme Colors

Use useThemeTokens to access the design system colors in your components:

import { useThemeTokens } from '@frosted-ui/react-native';

function MyComponent() {
  const { colors, isDark } = useThemeTokens();

  return (
    <View style={{ backgroundColor: colors.background }}>
      <Text style={{ color: colors.palettes.gray['12'] }}>Hello World</Text>
    </View>
  );
}

Requirements

  • React >= 18.0.0
  • React Native >= 0.70.0
  • React Native Reanimated >= 3.0.0
  • React Native Safe Area Context >= 4.0.0
  • React Native Screens >= 3.0.0
  • React Native SVG >= 13.0.0
  • Lucide React Native >= 0.300.0

Components

This library includes a comprehensive set of UI components:

  • Accordion
  • Alert Dialog
  • Avatar
  • Badge
  • Button
  • Card
  • Checkbox
  • Dialog
  • Dropdown Menu
  • Hover Card
  • Icon
  • Label
  • Popover
  • Progress
  • Radio Group
  • Select
  • Separator
  • Skeleton
  • Spinner
  • Switch
  • Tabs
  • Text
  • Text Field
  • Text Area
  • Tooltip

Styling

This library uses React Native's built-in styling system with a comprehensive design system. All components support light and dark mode out of the box, and include multiple color palettes (28+ accent colors) and variants.

AI/LLM Documentation

This package includes comprehensive documentation designed for AI agents and LLMs to generate code using Frosted UI. When installed, the docs are available at:

node_modules/@frosted-ui/react-native/docs/llm/
├── README.md           # Overview and quick reference
├── COLOR_SYSTEM.md     # Color palettes, shades, variants, accessibility
├── TYPOGRAPHY.md       # Typography scale, font weights, components
├── COMPONENTS.md       # Full component API reference
└── DESIGN_PATTERNS.md  # UX patterns, layout composition, visual design

AI agents should read these files to understand how to properly use the design system when generating React Native applications.

License

MIT