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

expo-app-ui

v1.0.6

Published

Production-ready, copy-paste React Native components for Expo. TypeScript-first, accessible, New Architecture compatible, with minimal peer dependencies. Customize freely — your code, your rules. Docs: https://expo-ui.thunderdevelops.in

Readme

Expo App UI

A UI component library for Expo React Native. Copy components directly into your project and customize them to your needs.

🏗️ Designed for production

Every component is built for real apps — not demos:

  • TypeScript strict mode with explicit prop interfaces
  • Accessibility wired inaccessibilityRole, accessibilityState, accessibilityValue, accessibilityLiveRegion, hit slop on touch targets
  • New Architecture (Fabric) compatible — tested on Expo SDK 52+ with newArchEnabled: true
  • Minimal peer dependencies — most components depend on nothing beyond react-native itself, keeping your screens lightweight
  • Best-practice patterns — controlled/uncontrolled modes where it matters, useNativeDriver where possible, no legacy bridge APIs
  • Full code ownership — components are copied into your project; modify, theme, or fork freely
  • Automated test suite for the CLI (57+ tests across unit and integration)

The goal: when you copy a component in, you're shipping production code on day one. Customize it, don't fight it.

✅ Compatibility

| Tool | Supported | | ------------------- | ---------------------------------- | | Expo SDK | 52, 53, 54+ (latest) | | React Native | 0.74+ | | New Architecture | ✅ Fabric + TurboModules | | Old Architecture | ✅ Still supported | | Platforms | iOS · Android · Web (where noted) | | TypeScript | ✅ Strict mode |

All components are tested against Expo SDK 54 with the New Architecture enabled (newArchEnabled: true in app.json). Components that wrap a third-party library (e.g. react-native-reanimated) inherit that library's New Architecture support — these are documented per component.

🎉 Recently Added Components

We've just added 4 new components to the library:

  • Accordion - Expandable accordion with smooth animations
  • Auto Scroll Cards - Carousel with auto-scrolling and manual swipe
  • Birthdate Picker - Native-style date picker with month/day/year wheels
  • Calendar - Flexible calendar with single date and range selection

Try them out:

npx expo-app-ui add accordion
npx expo-app-ui add auto-scroll-cards
npx expo-app-ui add birthdate-picker
npx expo-app-ui add calender

Component Showcase

Button • Custom Modal • OTP Input • Loading Bar • Accordion • Auto Scroll Cards • Calendar

📚 Documentation

👉 View Full Documentation →

For complete documentation, usage examples, API references, and detailed instructions, visit our documentation site:

https://expo-ui.thunderdevelops.in

The documentation includes:

  • 📖 Getting Started Guide
  • 🎨 Component Documentation
  • 🛠️ CLI Commands Reference
  • 💡 Usage Examples
  • 🔧 Configuration Guides

Quick Start

Installation

You can use this library directly with npx:

npx expo-app-ui add <component-name>

Or install it globally:

npm install -g expo-app-ui

Then use:

expo-app-ui add <component-name>

Usage

Adding Components

Add a component to your project:

npx expo-app-ui add custom-text

This will:

  • Copy the component template to components/ui/custom-text.tsx in your project
  • Automatically detect and add required dependencies (helpers, constants)
  • Preserve all imports and dependencies
  • Allow you to customize the component as needed

Example:

npx expo-app-ui add button
# Automatically adds normalizeSize helper and theme constants if needed

Adding Helpers, Constants, and Contexts

# Add a helper
npx expo-app-ui add normalizeSize

# Add constants
npx expo-app-ui add theme

# Add contexts (e.g., top loading bar)
npx expo-app-ui add top-loading-bar

Listing Available Items

npx expo-app-ui list

Overwriting Existing Files

npx expo-app-ui add custom-text --overwrite

📖 For detailed usage instructions, examples, and API documentation, visit expo-ui.thunderdevelops.in

Project Structure

After adding components, your project structure will look like:

your-project/
├── components/
│   └── ui/
│       ├── CustomText.tsx
│       ├── Button.tsx
│       └── ... (other components)
├── helpers/
│   └── normalizeSize.ts
├── constants/
│   └── theme.ts
└── ...

Auto-Dependency Detection

The CLI automatically detects when a component requires:

  • normalizeSize helper (from @/helper/normalizeSize)
  • theme constants (from @/constants/theme)
  • Related components or contexts

When you add a component that uses these dependencies, they will be automatically added to your project.

📖 Learn more about auto-dependency detection in the documentation

Component Templates

Components are copied directly into your project, so you have full control:

  • Own your code - Components are part of your codebase
  • Customizable - Modify components to fit your needs
  • Auto-dependencies - Required helpers and constants are added automatically
  • Type-safe - Full TypeScript support

Path Aliases

Components use path aliases like @/components/ui/custom-text and @/constants/theme. Make sure your Expo project has these configured:

tsconfig.json:

{
  "compilerOptions": {
    "baseUrl": ".",
    "paths": {
      "@/*": ["./*"]
    }
  }
}

babel.config.js:

module.exports = {
  plugins: [
    [
      'module-resolver',
      {
        root: ['./'],
        alias: {
          '@': './',
        },
      },
    ],
  ],
};

📖 See the Getting Started guide for detailed setup instructions

Available Components

Core

  • custom-text - A customizable Text component with font, color, and spacing props
  • button - A flexible button component with variants and icon support
  • box-view - A layout component with flexbox props

Display

  • badge - Compact label for status, counts, and tags
  • avatar - User avatar with image and initials fallback
  • skeleton - Animated placeholder for loading states
  • profile-pic - A profile picture component with fallback
  • progress-bar - A progress bar component with variants

Inputs & Forms

  • switch - Animated toggle switch
  • checkbox - Accessible checkbox with indeterminate state
  • radio-group - Single-select radio group
  • slider - Touch-driven value slider
  • otp-input - An OTP input component
  • birthdate-picker - A native-style date picker for selecting birthdates

Navigation

  • tabs - Three tab styles (underline, pills, segmented)

Overlays

  • dialog - Confirmation/alert dialog with actions
  • tooltip - Long-press tooltip
  • custom-modal - An animated modal component
  • bottom-sheet - Modal bottom sheet with swipe-to-dismiss
  • toast - Top/bottom auto-dismissing notification
  • snackbar - Bottom snackbar with optional action

Feedback & Motion

  • loading-bar - An animated top loading bar component
  • marquee - A scrolling marquee component
  • accordion - An expandable accordion component with smooth animations
  • auto-scroll-cards - A carousel component with auto-scrolling and manual swipe
  • calendar - A flexible calendar component with single date and range selection
  • calender - ⚠️ Deprecated typo alias of calendar

Available Contexts

  • top-loading-bar-context - React Context for managing top loading bar state

Available Helpers

  • normalizeSize - Normalizes font sizes based on device font scale

Available Constants

  • theme - Theme constants including colors, fonts, and sizes

📖 View complete documentation, props, examples, and usage for all components at expo-ui.thunderdevelops.in/docs/components

Contributing

To add new components, helpers, constants, or contexts:

  1. Components: Create a new .tsx file in the templates/components/ui/ directory
  2. Contexts: Create a new .tsx file in the templates/context/ directory
  3. Helpers: Create a new .ts file in the templates/helpers/ directory
  4. Constants: Create a new .ts file in the templates/constants/ directory
  5. Use kebab-case for filenames (e.g., my-component.tsx)
  6. The item will be automatically available via the CLI

📖 For contribution guidelines and best practices, visit the documentation

License

MIT