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

react-native-empty-state

v0.0.3

Published

Customizable empty state component for React Native

Downloads

12

Readme

react-native-empty-state

A lightweight, customizable, and TypeScript-friendly Empty State component for React Native applications.

Perfect for displaying:

  • No Data Found
  • Empty Cart
  • No Search Results
  • No Internet Connection
  • No Notifications
  • No Orders
  • Custom Empty Screens

Features

✅ Lightweight and dependency-free

✅ Fully customizable

✅ TypeScript support

✅ Optional image support

✅ Optional action button

✅ Custom styling support

✅ Render custom components using children

✅ React Native & Expo compatible


Installation

npm

npm install react-native-empty-state

yarn

yarn add react-native-empty-state

Peer Dependencies

Make sure your project includes:

{
  "react": ">=18.0.0",
  "react-native": ">=0.72.0"
}

Basic Usage

import React from 'react';
import { View } from 'react-native';
import { EmptyState } from 'react-native-empty-state';

export default function App() {
  return (
    <View style={{ flex: 1 }}>
      <EmptyState
        title="No Orders"
        description="You haven't placed any orders yet."
      />
    </View>
  );
}

With Action Button

<EmptyState
  title="No Internet Connection"
  description="Please check your network and try again."
  buttonText="Retry"
  onPress={() => console.log('Retry')}
/>

With Custom Image

<EmptyState
  image={require('./assets/empty-cart.png')}
  title="Your Cart is Empty"
  description="Add products to start shopping."
/>

Complete Example

import React from 'react';
import { View } from 'react-native';
import { EmptyState } from 'react-native-empty-state';

export default function App() {
  return (
    <View style={{ flex: 1 }}>
      <EmptyState
        image={require('./assets/no-data.png')}
        title="No Data Available"
        description="There is currently nothing to display."
        buttonText="Refresh"
        onPress={() => console.log('Refresh')}
      />
    </View>
  );
}

Custom Styling

All major UI elements can be customized.

<EmptyState
  title="No Results"
  description="Try changing your search filters."
  buttonText="Search Again"
  onPress={() => {}}
  containerStyle={{
    padding: 40,
  }}
  titleStyle={{
    fontSize: 24,
    color: '#111',
  }}
  descriptionStyle={{
    color: '#666',
  }}
  buttonStyle={{
    backgroundColor: '#28a745',
  }}
  buttonTextStyle={{
    color: '#fff',
  }}
/>

Render Custom Components

Use the children prop to render additional content.

<EmptyState
  title="No Products"
  description="Products will appear here."
>
  <CustomBanner />
</EmptyState>

Example:

<EmptyState
  title="No Notifications"
>
  <Button
    title="Go to Settings"
    onPress={() => {}}
  />
</EmptyState>

Props

| Prop | Type | Required | Default | |--------|--------|----------|----------| | title | string | No | No Data Found | | description | string | No | Nothing to display. | | image | ImageSourcePropType | No | - | | buttonText | string | No | - | | onPress | () => void | No | - | | containerStyle | ViewStyle | No | - | | titleStyle | TextStyle | No | - | | descriptionStyle | TextStyle | No | - | | buttonStyle | ViewStyle | No | - | | buttonTextStyle | TextStyle | No | - | | children | React.ReactNode | No | - |


Conditional Rendering

The component automatically handles optional content.

Image

If image is not provided, no image will be rendered.

<EmptyState
  title="No Data"
/>

Button

If buttonText is not provided, the button is hidden.

<EmptyState
  title="No Internet"
/>

TypeScript Support

The package is fully typed.

import {
  EmptyState,
  EmptyStateProps,
} from 'react-native-empty-state';

Expo Support

Works seamlessly with Expo projects.

npx create-expo-app my-app
npm install react-native-empty-state

No additional configuration required.


Package Structure

react-native-empty-state
│
├── src
│   ├── EmptyState.tsx
│   └── index.ts
│
├── dist
│
├── README.md
├── package.json
└── tsconfig.json

Development

Clone the repository:

git clone <repository-url>

Install dependencies:

npm install

Build package:

npm run build

Generate npm package:

npm pack

Publish:

npm publish --access public

Compatibility

| React Native | Status | |-------------|---------| | 0.72+ | ✅ Supported | | 0.73+ | ✅ Supported | | 0.74+ | ✅ Supported | | Expo SDK 50+ | ✅ Supported |


License

MIT


Contributing

Contributions, issues, and feature requests are welcome.

Feel free to open an issue or submit a pull request.


Author

Neeraj Singh

If you find this package useful, consider giving the repository a ⭐.