React native loading spinners based on the ones found at https://loading.io/css/.
Currently, the only loaders are <Loader.Ring>
and <Loaders.Ellipses>
. They can be seen below in the Demo.
npm install react-native-pure-loaders
or
yarn add react-native-pure-loaders
Example usage:
import Loaders from 'react-native-pure-loaders';
export default function App() {
return (
<View style={styles.container}
<Loaders.Ring />
</View>
);
}
props
- color: string - The color of the loader.
- size: number - The size of the loader icon. Defaults to 64.
props
- color: string - The color of the loader.
- size: number - The size of the loader icon. Defaults to 64.