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

@smrr17/react-native-text-more

v1.0.1

Published

A lightweight React Native component that **truncates a list of strings** into a single line and shows a `+N more` indicator when the content exceeds available space.

Readme

@smrr17/react-native-text-more

A lightweight React Native component that truncates a list of strings into a single line and shows a +N more indicator when the content exceeds available space.

Ideal for displaying product names, tags, or labels in a compact and user-friendly way.


✨ Features

  • 📏 Auto-calculates how many items can fit in the container width.
  • ➕ Shows +N more for hidden items.
  • 🎨 Fully customizable styles (containerStyle, displayTextStyle, remainingCountStyle).
  • ⚡ Written in TypeScript with type definitions.
  • ✅ Supports React Native 0.72+ and React 18+.

📦 Installation

npm install @smrr17/react-native-text-more
# or
yarn add @smrr17/react-native-text-more

🚀 Usage

import React from "react";
import { View } from "react-native";
import TextMore from "@smrr17/react-native-text-more";

export default function App() {
  return (
    <View style={{ padding: 20 }}>
      <TextMore
        data={[
          "pain",
          "gain",
          "rain",
          "train",
          "brain",
          "drain",
          "strain",
          "complain",
          "sustain",
          "maintain",
          "detain",
          "attain",
          "explain",
          "refrain",
          "campaign",
          "terrain",
          "curtain",
          "mountain",
          "fountain",
          "curtain",
        ]}
        containerStyle={{
          backgroundColor: "#f9f9f9",
          padding: 8,
          borderRadius: 6,
        }}
        displayTextStyle={{
          color: "blue",
          fontSize: 14,
        }}
        remainingCountStyle={{
          color: "red",
          fontSize: 14,
        }}
      />
    </View>
  );
}

📖 Props

| Prop | Type | Default | Description | |----------------------|-------------------------|-----------|-------------| | data | string[] | [] | Array of strings to display (e.g., product names). | | containerStyle | ViewStyle | undefined | Custom styles for the outer container <View>. | | displayTextStyle | TextStyle | undefined | Styles applied to the displayed (visible) text. | | remainingCountStyle| TextStyle | undefined | Styles applied to the +N more text. |


🛠 How It Works

  1. The component measures its container width via onLayout.
  2. It estimates text widths based on an average character width (4.8).
  3. It fits as many items as possible into the available width.
  4. If not all items fit, it displays the visible items followed by +N more.

📷 Example Output

If you pass:

["pain", "gain", "rain", "train", "brain", "drain"]

And the container is narrow, you might see:

pain, gain, rain +3 more

📄 License

MIT © Shahmeer Ahmed


🔗 Repository

GitHub – smrr17/react-native-text-more