• Stars
    star
    602
  • Rank 74,409 (Top 2 %)
  • Language
    TypeScript
  • License
    MIT License
  • Created over 5 years ago
  • Updated 9 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A customizable skeleton-like loading placeholder for react native projects using expo.

React Native Skeleton Content

If you are not using expo, please head up to this page instead.

React native Skeleton Content, a simple yet fully customizable component made to achieve loading animation in a Skeleton-style. Works in both iOS and Android.

New Features

  • The package has been rewritten to Hooks and is using the declarative react-native-reanimated package for animations
  • It now supports nested layouts for children bones, see an example on this snack
  • It finally supports percentages dimensions for bones, for any type of animation!

Build Status Coverage Status npm version

Installation

npm install react-native-skeleton-content

Usage

  1. Import react-native-skeleton-content:
import SkeletonContent from 'react-native-skeleton-content';
  1. Once you create the SkeletonContent, you have two options:
  • Child Layout : The component will figure out the layout of its bones with the dimensions of its direct children.
  • Custom Layout : You provide a prop layout to the component specifying the size of the bones (see the Examples section below). Below is an example with a custom layout. A key prop for each child is optional but highly recommended.
export default function Placeholder() {
  return (
    <SkeletonContent
      containerStyle={{ flex: 1, width: 300 }}
      isLoading={false}
      layout={[
        { key: 'someId', width: 220, height: 20, marginBottom: 6 },
        { key: 'someOtherId', width: 180, height: 20, marginBottom: 6 }
      ]}
    >
      <Text style={styles.normalText}>Your content</Text>
      <Text style={styles.bigText}>Other content</Text>
    </SkeletonContent>
  );
}
  1. Then simply sync the prop isLoading to your state to show/hide the SkeletonContent when the assets/data are available to the user.
export default function Placeholder () {
  const [loading, setLoading] = useState(true);
  return (
    <SkeletonContent
       containerStyle={{flex: 1, width: 300}}
        isLoading={isLoading}>
        {...otherProps}
    />
  )
}

Props

Name Type Default Description
isLoading bool required Shows the Skeleton bones when true
layout array of objects [] A custom layout for the Skeleton bones
duration number 1200 ms Duration of one cycle of animation
containerStyle object flex: 1 The style applied to the View containing the bones
easing Easing bezier(0.5, 0, 0.25, 1) Easing of the bones animation
animationType string "shiver" The animation to be used for animating the bones (see demos below)
animationDirection string "horizontalRight" Used only for shiver animation, describes the direction and end-point (ex: horizontalRight goes on the x-axis from left to right)
boneColor string "#E1E9EE" Color of the bones
highlightColor string "#F2F8FC" Color of the highlight of the bones

Note: The Easing type function is the one provided by react-native-reanimated, so if you want to change the default you will have to install it as a dependency.

Examples

See the playground section to experiment : 1 - Changing the direction of the animation (animationDirection prop) :

export default function Placeholder () {
  return (
    <SkeletonContent
        containerStyle={{flex: 1, width: 300}}
        animationDirection="horizontalLeft"
        isLoading={true}>
        ...
    />
  )
}

2 - Changing the colors and switching to "pulse" animation (boneColor, highlightColor and animationType prop) :

export default function Placeholder () {
  return (
    <SkeletonContent
        containerStyle={{flex: 1, width: 300}}
        boneColor="#121212"
        highlightColor="#333333"
        animationType="pulse"
        isLoading={true}>
        ...
    />
  )
}

3 - Customizing the layout of the bones (layout prop) :

export default function Placeholder () {
  return (
    <SkeletonContent
        containerStyle={{flex: 1, width: 300}}
        animationDirection="horizontalLeft"
        layout={[
        // long line
        { width: 220, height: 20, marginBottom: 6 },
        // short line
        { width: 180, height: 20, marginBottom: 6 },
        ...
        ]}
        isLoading={true}>
        ...
    />
  )
}

Playground

You can test out the features and different props easily on Snack. Don't hesitate to take contact if anything is unclear !

More Repositories

1

react-native-skeleton-content-nonexpo

A customizable skeleton-like loading placeholder for react native projects not using expo.
TypeScript
306
star
2

google-maps-ui-clone

A flluter clone of a Google Maps Redesign Challenge.
Dart
35
star
3

ReduSort

Practicing data structures and modern web technologies with the everlasting example of a sorting visualizer.
TypeScript
35
star
4

dotfiles

My collection of dotfiles
Shell
3
star
5

ALTEGRAD

Code and results for the Advanced Learning for Text and Graph Data course ๐Ÿ‘จโ€๐ŸŽ“
Jupyter Notebook
2
star
6

BikeStations

A web application to visualize the real-time availabilities of the bike stations in France, integrated with weather and air quality data, as well as closest trip-planning.
JavaScript
2
star
7

PimoWebsite

Website for PIMO project @ESILV
JavaScript
1
star
8

alexZajac

Did you find that secret too? Let's connect!
1
star
9

cryptol

Cryptocurrency monitoring app
TypeScript
1
star
10

faqe

Face recognition client built with React JS
JavaScript
1
star
11

marvelize

React app displaying Marvel characters in a grid layout
JavaScript
1
star
12

Board

Board is a creative way to share notes and lets you save ideas together.
JavaScript
1
star
13

airlines_performance

A ramp kit on airlines performance prediction โœˆ๏ธ
Jupyter Notebook
1
star
14

Minimax-alpha-beta

Implementation of Minimax with alpha-beta pruning for various games.
Python
1
star
15

ipparis-courses

A small web application to calculate ECTS and calendar payload for the courses of Master 2 DataScience at l'รฉcole Polytechnique โš”๏ธ
JavaScript
1
star