React Native – ActivityIndicator

PropsDescription
animatingOption to show the indicator (bydefault it is true) or hide it (false).
sizeSet the size of indicator (‘small’,’large’, number). The default size is small. Number format support only in android.
colorSet the foreground color of the spinner (default is gray).
hidesWhenStoppedIt provides an option to show or hide the indicator when there is no animating (true by default).

Example

In this example, the animating property set the activity indicator to true, and it is visible on the screen. When the component mounts, the animated activity indicator will be closed after six seconds using the closeActivityIndicator() method.

import React,{Component} from 'react';
import { Picker, View, StyleSheet, ActivityIndicator } from 'react-native';
export default class ActivityIndicatorDemo extends Component {
  state = { animating: true }
  closeActivityIndicator = () => setTimeout(() => this.setState({
    animating: false
  }), 6000)
  componentDidMount = () => this.closeActivityIndicator()
  render() {
    const animating = this.state.animating
    return (
      <View style={[styles.container, styles.horizontal]} >
        <ActivityIndicator animating={animating} size="large" color="#ff0000" />
        <ActivityIndicator size="small" color="#44ff00" />
        <ActivityIndicator size="large" color="#rtwrw" />
      </View>
    )
  }
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    justifyContent: 'center'
  },
  horizontal: {
    flexDirection: 'row',
    justifyContent: 'space-around',
    padding: 10
  }
});
0 0 votes
Article Rating

Learn React Native App available on play store Download Now.
Do you want to hire us for your Project Work? Then Contact US.
Spread the love
Subscribe
Notify of
guest

0 Comments
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x