Provide a placeholder at the place which need waiting for loading, Easy to implement and fun to use, this package is highly customizable, Please go through docs to find info :).
I tried to move this package to @sarmad1995/react-native-content-loader, but seems like people are using this version a lot, so I will be maintaining this version from now, @sarmad1995/react-native-content-loader also has all the features.
- ⚙️ Customizable: Feel free to change the colors, speed, sizes, paragraphs, title and much more.
- ⚛️ Lightweight: Lightweight with only neccessory code.
- 🎉 Typescript: Fully typed
npm install react-native-easy-content-loader --save
yarn add react-native-easy-content-loader
<ContentLoader active />
<ContentLoader active avatar />
<ContentLoader active avatar loading={this.state.loading}>
<Text>This would be rendered with loading is false</Text>
</ContentLoader>
<ContentLoader active avatar pRows={4} />
<ContentLoader active avatar pRows={4} pWidth={["100%", 200, "25%", 45]} />
These are also flexible and customizable
Facebook loader | Instagram loader |
---|---|
import { FacebookLoader, InstagramLoader } from 'react-native-easy-content-loader';
<FacebookLoader active />
<InstagramLoader active />
<Bullets active listSize={10} />
import ContentLoader from "react-native-easy-content-loader";
<ContentLoader
avatar
pRows={5}
pHeight={[100, 30, 20]}
pWidth={[100, 70, 100]}
/>;
Added custom heights and widths | Same with other loaders |
---|---|
Some more examples,
<FacebookLoader pHeight={[20, 10]} />
<ContentLoader reverse avatar pRows={5} pHeight={[40, 30, 20]} />
<ContentLoader active listSize={10} />
Default Loader | Colored |
---|---|
import ContentLoader, {
FacebookLoader,
InstagramLoader,
Bullets
} from "react-native-easy-content-loader";
<ContentLoader active />
Defaults to rgba(220, 220, 220, 1)
.
Defaults to rgba(200, 200, 200, 1)
.
Defaults to 500
. The animation transition time from primaryColor to secondaryColor
Defaults to null
, If given a bool value, when false, it will return children (Works as a wrapper component)
Defaults to false
, true
if you want to animate the compoennt.
Defaults to true
. If you want to show the title, Works only with ContentLoader.
Add styles to title.
Defaults to 1
. If you want to render a list of loaders, Works with all the loaders.
Defaults to false
. If you want to render the avatar.
Defaults to circle
. shape of the avatar, can be circle or square.
Defaults to default
. can be a specific number.
Defaults to false
. if you want to reverse the view.
If you want to add style to container.
Used to change the title height.
Used to change the title width.
Used to change the secondary title height Works with only Facebook and Instagram.
Used to change the secondary title width Works with only Facebook and Instagram.
Add styles to title.
Add styles to secondaryTitle. Works with only Facebook and Instagram.
Paragraph line height, Can specify same height with single value, Or could use array for different heights, eg ['100%', 200, 300], you can use pHeight and pWidth to achieve different shapes as well,
Paragraph line width, Can specify same width with single value, Or could use array for different widths, eg ['100%', 200, 300]
Add paragraph styles
Change the height of the image
Add styles to image
See CHANGE_LOG.md.
Feel free to contribute, this is still in beta and I have plans to include more features in future :)