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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@react-native-welcome-screen/components

v1.0.4

Published

It will help user make welcome screens for app easily. Also will help to make custom text input, bottom tab navigator and buttons. This is designed by Fristan Lobo

Downloads

37

Readme

HOW TO USE WELCOME SCREEN

Note:- Screens props and onContinue props cannot be null ever. In screens image can be passed null or images too.

  • import the component with 'WelcomeScreen' from 'react-native-welcome-screen
  • The props which can be passed to the welcomscreen components are as follows:
  1. screens: This will be the array which can consider the Image , title, description and image size for the welcome screen . e.g: screens={[ { image:require("./assets/images/welcomescreen3.jpg"), title:"Find someone who loves painting.", desc:"Let build a community to find the people of similar interest like painting .", size:450 } ]}
  2. titleStyle: This will include the styles for the title of the welcome screen
  3. descStyle :This will include the styles for the description of the welcome screen
  4. activeDotColor: This will include the color of active dots on the welcome screen.
  5. nonActiveDotColor: This will inlude the color of non active dots on the welcome screen.
  6. onContinue: This will include function call like naviagtion or message when the last screen appears and continue button is there.