Skip to content

EQuimper/react-native-loading-status-spinner

Repository files navigation

React-Native-Loading-Status-Spinner

An extension component to the StatusBar to show the spinner on IOS only.

Installation

yarn add react-native-loading-status-spinner

Utilisation

Replace the StatusBar with the LoadingStatusSpinner component.

You can see an example on expo here or in the example folder.

import React from 'react';
import { StyleSheet, Text, View, ActivityIndicator } from 'react-native';
import LoadingStatusSpinner from 'react-native-loading-status-spinner';

export default class App extends React.Component {
  state = {
    people: {},
    loading: true,
  }

  componentDidMount() {
    this._fetchLuke();
  }

  _fetchLuke = async () => {
    const res = await fetch('http://swapi.co/api/people/1');
    const resJson = await res.json();
    this.setState({ people: resJson, loading: false });
  }

  render() {
    if (this.state.loading) {
      return (
        <View style={styles.container}>
          <ActivityIndicator color="#fff" size="large" />
        </View>
      )
    }
    return (
      <View style={styles.container}>
        <LoadingStatusSpinner barStyle="light-content" />
        <Text style={styles.text}>{this.state.people.name}</Text>
      </View>
    );
  }
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    backgroundColor: '#000',
    alignItems: 'center',
    justifyContent: 'center',
  },
  text: {
    color: '#fff'
  }
});

Credit

I've done this library after reading this blog post here By Gosha Arinich

About

An extension component to the StatusBar to show the spinner on IOS only.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published