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 🙏

© 2025 – Pkg Stats / Ryan Hefner

react-native-whatsnew-kit

v0.0.2

Published

Plug & Play, beautiful WhatsNewKit for React Native

Downloads

15

Readme

Battle Tested ✅

Plug & Play, beautiful WhatsNewKit for React Native

npm version npm Platform - Android and iOS License: MIT styled with prettier

Installation

Add the dependency:

npm i react-native-whatsnew-kit

Peer Dependencies

IMPORTANT! You need install them
"react": ">= 16.x.x",
"react-native": ">= 0.55.x",
"react-native-modal": ">= 11.5.3"

Usage

Import

import WhatsNew from "react-native-whatsnew-kit";

Basic Usage

<WhatsNew
  data={data}
  fullScreen={false}
  isVisible={isVisible}
  onBackdropPress={() => setIsVisible(false)}
/>

Data Array Format

Data MUST be with this format. If you want to use your own iconComponent instead of internal Image or ImageComponent (just as FastImage) then you need to set iconComponent field within the data format.

[
  {
    title: "Awesome",
    description:
      "Suspendisse ex mauris, viverra vitae mi eget, consectetur interdum sem. Phasellus sodales elit ac mauris posuere",
    icon: require("assets/check.png"),
    iconComponent: null
  },
  {
    title: "Dark Theme",
    description:
      "Orci varius. Aliquam accumsan lectus lorem, a congue diam commodo sit amet. Fusce laoreet sapien non lectus dignissim viverra.",
    icon: require("assets/theme.png"),
    iconComponent: null
  },
  {
    title: "Bug Fixes",
    description: "Donec non mauris sagittis, gravida velit vel, varius quam.",
    icon: require("assets/wiping.png"),
    iconComponent: null
  }
];

Configuration - Props

| Property | Type | Default | Description | | --------------------- | :-----------: | :---------: | ----------------------------------------------------------- | | data | Object Array | [] | You must set the formatted data as expected | | width | number/string | undefined | change the width of the whole modal | | height | number/string | undefined | change the height of the whole modal | | title | string | WhatsNewKit | change the main title | | onPress | function | undefined | set your own function for the main button | | isVisible | boolean | false | Visibility of the WhatsNewKit Modal | | fullScreen | boolean | false | make the WhatsNewKit full screen | | ImageComponent | Component | Image | set your own image component such as FastImage | | backgroundColor | color | #fdfdfd | change the WhatsNewKit's background color | | iconWidth | string/number | 50 | change the each icon's width | | iconHeight | string/number | 50 | change the each icon's height | | buttonText | string | Awesome! | set the main button's text | | buttonStyle | style | default | set your own style for main button | | titleFontSize | number | 32 | change the title's font size | | buttonFontSize | number | 16 | change the button's font size | | titleFontColor | color | #000 | change the title's font color | | titleTextStyle | style | default | set your own text style for title | | buttonTextStyle | style | default | set your own text style for button | | buttonFontColor | color | #fdfdfd | change the button's font color | | textButtonValue | string | Read more | change the text button's text | | textButtonOnPress | function | undefined | set your own function for text button as Read more button | | itemDescTextStyle | style | default | set your own text style for item's description | | itemTitleTextStyle | style | default | set your own text style for item's title | | textButtonTextStyle | style | default | set your own text style for text button's text | | textButtonFontColor | color | #3da7d2 | change the color of text button's font | | buttonBackgroundColor | color | #3da7d2 | change the color of main button's background color |

Future Plans

  • [x] ~~LICENSE~~
  • [ ] Animations
  • [ ] Write an article about the lib on Medium

Credits

WhatsNewKit is heavily inspired by SvenTiigi's WhatsNewKit Thank you so much for this awesome kit 🥳

Author

FreakyCoder, [email protected]

License

React Native WhatsNewKit is available under the MIT license. See the LICENSE file for more info.