Skip to main content

React Native UI

A comprehensive UI component library for React Native

TS

TypeScript Support

Full TypeScript support with comprehensive type definitions for all components. Build with confidence using type-safe props and APIs.

Modern Design System

Consistent theming with customizable colors, spacing, and typography. Built-in dark mode support with smooth theme switching.

Accessibility First

WCAG compliant components with proper screen reader support, keyboard navigation, and focus management for inclusive user experiences.

Lightweight

Built for React Native and React Native Web, with shared components for seamless cross-platform development.

Getting Started

Install the package

npm install re-native-ui

Setup the theme

import {ThemeProvider} from "re-native-ui";

<ThemeProvider>
<Text>Hello</Text>
<Text>Hello</Text>
<Text>Hello</Text>
</ThemeProvider>

Use the components

import {Input} from "re-native-ui";

<Input placeholder="Enter your name" />