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.5

Published

A UI component library for Expo React Native. Copy components directly into your project and customize them to your needs. Documentation: https://expo-apps-ui.vercel.app

Readme

Expo App UI

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

🎉 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-apps-ui.vercel.app

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-apps-ui.vercel.app

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

  • 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
  • custom-modal - An animated modal component
  • profile-pic - A profile picture component with fallback
  • progress-bar - A progress bar component with variants
  • marquee - A scrolling marquee component
  • otp-input - An OTP input component
  • loading-bar - An animated top loading bar component
  • accordion - An expandable accordion component with smooth animations
  • auto-scroll-cards - A carousel component with auto-scrolling and manual swipe
  • birthdate-picker - A native-style date picker for selecting birthdates
  • calender - A flexible calendar component with single date and range selection

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-apps-ui.vercel.app/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