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

@masumdev/rn-ui

v0.3.0

Published

A reusable React Native UI kit with typed theme tokens, light/dark mode, and composable core components.

Readme

@masumdev/rn-ui

A modern, flat-designed React Native & Expo UI kit with 55+ typed components, dynamic light/dark theme engine, zero-shadow defaults, and pluggable architecture.

npm version license


📚 Full Documentation

Comprehensive guides, component previews, prop tables, and interactive examples are available in our official documentation:

👉 Explore Full Documentation & Component Catalog


✨ Features

  • Flat Aesthetic: Border-based, clean UI primitives with zero elevation/shadow by default.
  • Dynamic Theme Engine: Light, dark, and system preference support via ThemeProvider.
  • 55+ Typed Components: Forms, feedback, overlays, navigation, data display, and chat UI primitives.
  • Pluggable Architecture: Zero lock-in for fonts, icons, navigation, storage, or haptics.
  • Reanimated Powered: Smooth 60fps micro-animations powered by react-native-reanimated.
  • Strict Type Safety: 100% TypeScript with zero any types and shared base UI prop interfaces.

📦 Quick Install

Expo

npx expo install react-native-reanimated react-native-worklets react-native-gesture-handler react-native-calendars
bun add @masumdev/rn-ui @gorhom/bottom-sheet

React Native CLI

bun add @masumdev/rn-ui react-native-reanimated react-native-worklets react-native-gesture-handler react-native-calendars @gorhom/bottom-sheet

⚡ Quick Setup

Wrap your application root with GestureHandlerRootView and ThemeProvider:

import { GestureHandlerRootView } from "react-native-gesture-handler";
import { ThemeProvider, ToastProvider } from "@masumdev/rn-ui";

export default function App() {
  return (
    <GestureHandlerRootView style={{ flex: 1 }}>
      <ThemeProvider defaultColorScheme="system">
        <ToastProvider placement="bottom">
          <RootNavigator />
        </ToastProvider>
      </ThemeProvider>
    </GestureHandlerRootView>
  );
}

🚀 Basic Usage

import React from "react";
import { Box, Card, Text, Badge, Button, useTheme } from "@masumdev/rn-ui";

export function ExampleScreen() {
  const { toggleColorScheme } = useTheme();

  return (
    <Box flex={1} bg="background" p="lg" gap="md" justify="center">
      <Card elevated>
        <Box row justify="space-between" align="center">
          <Text variant="h3">@masumdev/rn-ui</Text>
          <Badge tone="success">Active</Badge>
        </Box>
        <Text color="textMuted" style={{ marginTop: 8 }}>
          Flat, token-driven React Native components built for speed and type-safety.
        </Text>
      </Card>

      <Button tone="primary" variant="filled" fullWidth onPress={toggleColorScheme}>
        Toggle Theme Mode
      </Button>
    </Box>
  );
}

📄 License

MIT © Ma'sum