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-load-shimmer

v0.0.4

Published

Simple loading shimmer for React Native

Downloads

59

Readme

react-native-load-shimmer

Add a simple shimmer effect to any UI loading state. No native dependencies!

Installation

yarn add react-native-load-shimmer

Properties

| Prop | Description | Required | |----------------|-----------------------------------------------------------|----------| | children | React native elements that you want to apply a shimmer to | Y | | isShimmering | Boolean - Dictates whether shimmer effect is occurring | Y | | containerStyle | Style to apply to wrapper on shimmer component | N | | shimmerConfig | Config object for shimmer effect | Y |

Shimmer Config Options

| Key | Description | Required | Default | |-----------------|-------------------------------------------------------------|----------|---------------------------------------------| | skewX | Slant applied to shimmer | N | "-30deg" | | gradientWidth | Width of each gradient | N | 20 | | startX | Starting position for shimmer effect | N | Variable | | duration | Duration in ms of 1 loop of shimmer effect | N | 1500 | | useNativeDriver | Uses the native driver when true. | N | True | | shimmerColor | Color of shimmer effect. Should match background of screen. | Y | | | toValue | Ending position of shimmer effect | N | Variable | | opacityArr | Array of opacity values to create shimmer | N | [.05, .15, .25, .3, .35, .3, .25, .15, .05] |

Usage

/**
 * @flow strict-local
 */

import React from 'react';
import Shimmer from 'react-native-simple-shimmer';

export default function LoadingWithShimmer({children}) {
  const shimmerConfig = {
    startingX: -200,
    useNativeDriver: true,
    shimmerColor: '#FFF',
    toValue: Dimensions.get('window').width + 100,
  };

  return (
      <SafeAreaView>
        <ScrollView
          style={styles.scrollView}>
          <Shimmer shimmerConfig={shimmerConfig} containerStyle={containerStyle} isShimmering={true}>
            {children}
          </Shimmer>
        </ScrollView>
      </SafeAreaView>
  );
};

const styles = StyleSheet.create({
  scrollView: {
    backgroundColor: 'white',
  },
});

License

MIT License. react-native-load-shimmer is under MIT license. © Kevin DeArmond 2020 - present