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

@carlosmedina06/ui-native

v1.0.15

Published

the best way to build beautiful applications on iOS and Android with React Native and NativeWind.

Downloads

33

Readme

Introduction

Welcome to UI Native, the best way to build beautiful applications on iOS and Android with React Native and NativeWind.

What is UI Native?

UI Native is an open-source UI component library designed to simplify the creation of modern and stylish mobile applications on iOS and Android. It leverages the power of React Native and NativeWind to provide a smooth and highly customizable development experience.

Why choose UI Native?

  • Fast and efficient: Uses Tailwind CSS style optimization to enhance performance.
  • Adaptive design: Flexible and customizable components that fit any design.
  • Easy to use: Simple and clear syntax, ideal for developers of all levels.
  • Compatible with Expo: Fully compatible with Expo for seamless integration.
  • Active support: We are committed to improving and maintaining UI Native over time.

🚀 Getting Started

Follow these steps to get started with UI Native in your React Native project with Expo.

1️⃣ Create a New Project with Expo

Before you begin, make sure you have Node.js (version 18 or higher) installed. Then, create a new Expo project by running:

npx create-expo-app my-app
cd my-app

This will set up a new Expo project ready to use.

2️⃣ Install NativeWind and Tailwind CSS

Follow the installation steps for NativeWind according to its official documentation:

As a quick guide, here are the steps to follow:

npm install nativewind tailwindcss@^3.4.17 [email protected] react-native-safe-area-context

3️⃣ Install UI Native

Install UI Native in your project with the following command:

npm install @carlosmedina06/ui-native

4️⃣ Configure Tailwind CSS and NativeWind

npx tailwindcss init

This will create a tailwind.config.js file in the root of your project. Make sure it has the following configuration, and if not, add it:

/** @type {import('tailwindcss').Config} */
module.exports = {
  content: [
    // Add the paths of your React Native files
    "./App.{js,jsx,ts,tsx}",
    "./components/**/*.{js,jsx,ts,tsx}"
    // Required for UI Native to work with Tailwind CSS for now
    './node_modules/@carlosmedina06/ui-native/**/*.{js,ts,tsx}',
  ],
  theme: {
    extend: {},
  },
  plugins: [],
};

Create a global.css file in the root of your project and add the following:

@tailwind base;
@tailwind components;
@tailwind utilities;

5️⃣ Configure Babel

Open babel.config.js and add the NativeWind plugin:

module.exports = function(api) {
  api.cache(true);
  return {
    presets: ['babel-preset-expo'],
    plugins: ['nativewind/babel'],
  };
};

6️⃣ Run the Application

Now you can run your application with Expo:

npx expo start

This will open the Expo Developer Tools, allowing you to test your app on a simulator or a real device.


Congratulations! 🎉 You now have UI Native running in your project. You can start using its components to build amazing interfaces. 🚀