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

@mainamiru/react-native-ui-kit

v0.1.5

Published

[![npm version](https://img.shields.io/npm/v/react-native-ui-kit)](https://www.npmjs.com/package/react-native-ui-kit) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![PRs Welcome](https://img

Readme

React Native UI Kit

npm version License: MIT PRs Welcome

A comprehensive, customizable, and accessible UI kit for React Native applications. Built with TypeScript and designed for performance and developer experience.

Features

  • 🎨 40+ customizable components
  • 🎯 TypeScript support out of the box
  • 📱 Cross-platform (iOS & Android)
  • ♿ Built with accessibility in mind
  • 🚀 Optimized for performance
  • 🔄 Theme support
  • 🎭 Support for light/dark mode
  • 📝 Comprehensive documentation

Installation

Using npm:

npm install @mainamiru/react-native-ui-kit @expo/vector-icons

Or using yarn:

yarn add @mainamiru/react-native-ui-kit

Or using bun:

bun add @mainamiru/react-native-ui-kit

Or using expo:

npx expo install @mainamiru/react-native-ui-kit

Icon for Expo Project

npx expo install @expo/vector-icons

Icon for React Native Project

npm install @react-native-vector-icons/evil-icons

Getting Started

Basic Usage

Wrap your app with the ThemeProvider to enable theming and access to the UI components:

import * as React from "react";
import { AppRegistry } from "react-native";
import {
  DefaultTheme,
  ReactNativeUIKitProvider,
} from "@mainamiru/react-native-ui-kit";
import { name as appName } from "./app.json";
import App from "./src/App";

export default function Main() {
  return (
    <ReactNativeUIKitProvider theme={DefaultTheme}>
      <App />
    </ReactNativeUIKitProvider>
  );
}

AppRegistry.registerComponent(appName, () => Main);

Components

Basic Components

  • ActivityIndicator - Loading indicator
  • Avatar - User avatar with image or initials
  • Badge - Small status indicators
  • Button - Customizable button component
  • Card - Container for content with optional header and footer
  • Checkbox - Selection control
  • Divider - Visual separator
  • Icon - Icon component with support for custom icon sets
  • Text - Text component with typography support
  • TextInput - Input field with various styles

Layout Components

  • Box - Basic building block for layouts
  • Center - Centers its children
  • Container - Responsive container
  • Flex - Flexbox container
  • Grid - Grid layout system
  • Row - Horizontal layout container
  • Spacer - Adds space between components

Navigation

  • BottomSheet - Modal bottom sheet
  • Menu - Dropdown menu
  • Sidebar - Side navigation
  • Tabs - Tab navigation

Data Display

  • List - Scrollable list with various styles
  • Table - Data table with sorting and pagination
  • Tooltip - Informative tooltip

Feedback

  • Dialog - Modal dialog
  • Skeleton - Content loading placeholders
  • Spinner - Loading indicator
  • Toaster - Notification system

Form Components

  • Checkbox - Toggle input
  • Picker - Dropdown selector
  • Radio - Radio button group
  • SearchBar - Search input field
  • Switch - Toggle switch

Customization

All components are highly customizable through props. You can also extend the default theme or create your own component variants.

Documentation

For detailed documentation and examples, please visit our documentation website.

Contributing

We welcome contributions! Please read our Contributing Guide to learn how to contribute to this project.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Support

If you find this library useful, please consider giving it a ⭐️ on GitHub.

Roadmap

  • [ ] Add more components
  • [ ] Improve documentation
  • [ ] Add more examples
  • [ ] Performance optimizations
  • [ ] Accessibility improvements

Acknowledgments

  • Built with ❤️ by the React Native community
  • Inspired by various UI component libraries

💡 Tip: Check out our examples directory for more usage examples.