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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@joe111/neo-ui

v1.3.19

Published

A modern React Native UI library

Readme

@joe111/neo-ui

A modern, customizable React Native UI library built with TypeScript

npm version GitHub TypeScript React Native

🌐 Visit Neo-UI.dev | 📚 Documentation


🚧 BETA DEVELOPMENT 🚧

⚠️ This library is currently in beta development (v1.3.13) and is still under active development. APIs may change, and some features may not be fully stable. Use with caution in production environments.


✨ Features

  • 🎨 Comprehensive Theme System - Fully customizable colors, typography, and spacing
  • 🧩 Rich Component Library - 15+ pre-built components for common UI patterns
  • 📱 React Native First - Built specifically for React Native with Expo support
  • 🔧 TypeScript Support - Full type safety and IntelliSense
  • 🎯 Navigation Ready - Integrated navigation components with React Navigation
  • 🚀 Performance Optimized - Lightweight and efficient
  • 📦 Tree Shakeable - Individual component imports for optimal bundle size
  • 🎭 Modern Design - Inspired by Material-UI with custom NeoUI styling

📦 Installation

npm install @joe111/neo-ui
# or
yarn add @joe111/neo-ui

Peer Dependencies

Install the required peer dependencies:

npm install react react-native @react-navigation/native @react-navigation/bottom-tabs @react-navigation/elements react-native-gesture-handler react-native-reanimated react-native-safe-area-context react-native-screens react-native-svg

Additional Dependencies

The package also requires:

npm install @expo/vector-icons

🚀 Quick Start

1. Setup Theme Provider

Wrap your app with the ThemeProvider:

import React from 'react';
import { ThemeProvider } from '@joe111/neo-ui';
import { YourApp } from './YourApp';

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

2. Use Components

You can import and use components directly:

import React from 'react';
import { Button, Typography, Box } from '@joe111/neo-ui';

export function YourApp() {
  return (
    <Box padding="lg">
      <Typography variant="h1">Welcome to NeoUI</Typography>
      <Button variant="primary" onPress={() => console.log('Hello NeoUI!')}>
        Get Started
      </Button>
    </Box>
  );
}

🧩 Available Components

Layout & Navigation

  • Box - Flexible container with theme-aware spacing and styling
  • Screen - Screen wrapper with safe area handling and navigation integration
  • ParallaxScrollView - Parallax scroll view component

Typography & Text

  • Typography - Text component with predefined styles and variants
  • ThemedText - Theme-aware text component
  • ThemedView - Theme-aware view component

Form Controls & Input

  • Button - Customizable button with multiple variants and states
  • TextField - Input field with validation, theming, and form integration
  • Chip - Compact elements for tags, filters, and actions

Feedback & Notifications

  • Alert - Alert messages with different severity levels and customizable styling
  • Toast - Toast notifications with global state management and positioning
  • Skeleton - Loading placeholders with customizable shapes and animations
  • Rating - Interactive star rating component

Data Display & Indicators

  • Avatar - User profile pictures with fallbacks and group support
  • Badge - Small status indicators and notification badges
  • Ticker - Animated text ticker for scrolling content

Theme System

  • ThemeProvider - Context provider for theme management
  • useTheme - Hook for accessing theme values
  • createTheme - Utility for creating custom themes

🎨 Theming System

Default Theme Usage

import { ThemeProvider, useTheme } from '@joe111/neo-ui';

export function CustomComponent() {
  const theme = useTheme();

  return (
    <View style={{ backgroundColor: theme.colors.primary }}>
      <Text style={theme.typography.h1}>Styled with theme</Text>
    </View>
  );
}

📱 Demo & Examples

Demo Repository

Experience all components in action with our comprehensive demo app:

  • 📖 Demo Documentation - Detailed demo guide with screenshots
  • Clone and run the demo app locally to explore all components

Run Demo App

git clone https://github.com/Joe-Moussally/react-native-neo-ui.git
cd react-native-neo-ui/example

# Install dependencies
npm install

# Start the demo app
npm start

📚 Documentation

🚀 Recent Updates (v1.3.13)

  • Individual Module Imports - Tree-shakeable imports for better bundle optimization
  • 🐛 Bug Fixes - Resolved import path issues and npm publishing
  • 📦 Build Improvements - Enhanced build process with better TypeScript support
  • 🔧 Documentation - Updated examples and usage guides

🤝 Contributing

We welcome contributions! Please see our Contributing Guide for details.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'feat: add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

📄 License

📄 License Notice: Neo UI is source-available under a custom license.
You're free to use it in personal or commercial apps and projects.
Redistribution or republishing as part of another library, toolkit, or competing product is not allowed without written permission.

Custom Source-Available License © Joe Moussally

🙏 Support & Community



Made with create-react-native-library