1.0.1 • Published 1 year ago

react-native-basic-skeleton v1.0.1

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

React Native Basic Skeleton

Installation

npm install react-native-basic-skeleton or yarn add react-native-basic-skeleton

Usage

  1. Import react-native-basic-skeleton:
import BasicSkeleton from 'react-native-basic-skeleton';

Props

NameTypeDefaultDescription
visibleboolrequiredShows the Skeleton when true
loadingBackgroundArray[]required "transparent", "rgba(0,0,0,0.05)", "transparent"Shows the Skeleton linear color
heightnumberrequired 100Shows the Skeleton bones height
widthnumberrequired 100Shows the Skeleton bones width
durationnumber1000 msDuration of one cycle of animation
styleobjectThe style applied to the View containing
backgroundColorstring required "rgba(0,0,0,0.12)"The style applied to the View containing color

Examples

Note: If react-native-linear-gradient is not installed in the project, you need to install it.

export default function Placeholder () {
  return (
    <BasicSkeleton
    height={200}
    width={200}
    backgroundColor="rgba(0,0,0,0.12)"
    duration={4000}
    loadingBackground={["transparent", "rgba(0,0,0,0.05)", "transparent"]}
    style={{borderRadius: 30}}
    visible={true}>
    />
  )
}

Contribution

Issues are welcome. Please add a screenshot of bug and code snippet. Quickest way to solve issue is to reproduce it on one of the examples.

Pull requests are welcome. If you want to change API or making something big better to create issue and discuss it first.