$ npm i react-native-auto-placeholder-loading --save
or
$ yarn add react-native-auto-placeholder-loading
import { Text, View } from 'react-native';
import AutoPlaceholderLoading from 'react-native-auto-placeholder-loading';
const App = () => (
<AutoPlaceholderLoading loading={isFetched}>
<View>
<Text>Hello World</Text>
</View>
</AutoPlaceholderLoading>
);