Console
as
Support
Contact Us
My Cases
Settings
Sign out
Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Version 0.72
Displays a circular loading indicator.
import React from 'react'; import {ActivityIndicator, StyleSheet, View} from 'react-native'; const App = () => ( <View style={[styles.container, styles.horizontal]}> <ActivityIndicator /> <ActivityIndicator size="large" /> <ActivityIndicator size="small" color="#0000ff" /> <ActivityIndicator size="large" color="#00ff00" /> </View> ); const styles = StyleSheet.create({ container: { flex: 1, justifyContent: 'center', }, horizontal: { flexDirection: 'row', justifyContent: 'space-around', padding: 10, }, }); export default App;
true
false
null
'small'
'large'
Was this page helpful?