Skip to content

Show the indicator in ReactNative

   

This is a sample to display an indicator in ReactNative.
react-native: 0.56.0

alt

import React, {Component} from 'react';
import {AppRegistry} from 'react-native';
import {
StyleSheet,
ActivityIndicator,
View
} from 'react-native';
import {name as appName} from './app.json';
export class App extends Component {
render() {
return (
<View style={styles.container}>
<ActivityIndicator
size="large"
color="red" />
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
marginTop: 20
},
});
AppRegistry.registerComponent(appName, () => App);
view raw index.js hosted with ❤ by GitHub

  1. Display an image with ReactNative
  2. Specifying the size of the View in FlexBox
  3. Displaying a FlatList in ReactNative
  4. Display the button with ReactNative