Socket
Socket
Sign inDemoInstall

react-native-loading-spinner-overlay

Package Overview
Dependencies
506
Maintainers
2
Versions
26
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    react-native-loading-spinner-overlay

The only pure React Native Native iOS and Android loading spinner (progress bar indicator) overlay


Version published
Weekly downloads
16K
increased by10.22%
Maintainers
2
Install size
18.8 kB
Created
Weekly downloads
 

Readme

Source

React Native Loading Spinner Overlay

code style styled with prettier made with lass license npm downloads

Table of Contents

Install

npm:

npm install react-native-loading-spinner-overlay

yarn:

yarn add react-native-loading-spinner-overlay

Example

See the example App.js file for an example implementation.

Options

PropertyTypeDefaultDescription
cancelableBooleanfalseAndroid: If set to false, it will prevent spinner from hiding when pressing the hardware back button. If set to true, it will allow spinner to hide if the hardware back button is pressed.
colorString"white"Changes the spinner's color (example values are red, #ff0000, etc). For adjusting the contrast see overlayColor prop below.
animationString (enum) none, slide, fade"none"Changes animation on show and hide spinner's view.
overlayColorStringrgba(0, 0, 0, 0.25)Changes the color of the overlay.
sizeString (enum) small, normal, large"large"Sets the spinner's size. No other cross-platform sizes are supported right now.
textContentString""Optional text field to be shown.
textStyleStyleSheet-The style to be applied to the <Text> that displays the textContent.
visibleBooleanfalseControls the visibility of the spinner.
indicatorStyleStyleSheetundefinedAdditional styles for the ActivityIndicator to inherit
customIndicatorElementundefinedAn alternative, custom component to use instead of the default <ActivityIndicator />
childrenElementundefinedChildren element(s) to nest inside the spinner

We recommend that you follow two rules when implementing this component.

  1. Integrate it inside the parent-most/top-level/root component in your app

  2. Wrap usage of actions after attempting to stop the spinner with setTimeout to avoid the non-stop spinner issue:

    this.setState({ spinner: false });
    
    setTimeout(() => {
      Alert.alert('Oops!', err.message);
    }, 100);
    

Contributors

NameWebsite
Nick Baughhttp://niftylettuce.com
Rohit Bhatiahttp://blendtale.com
Spencer Snyderhttp://spencersnyder.io
Luciano Lima
George Savvidis
Sandro Machado
Ben Sutter
Ivan Kuznetsov
Darren Camp
Rigo B Castro
Raj Kissu
Ivan Pusic
Antonio Grass
Vijay Chouhan
Jacob Lee
Matt Labrum

License

MIT © Nick Baugh

Keywords

FAQs

Last updated on 28 Jul 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc