React Native | Activity Indicator Component
App.js:
import React from 'react';
import {View, StyleSheet, Button, Alert, Text, ActivityIndicator} from 'react-native';
const App = () => {
return(
<View>
<Text style={{fontSize:30, backgroundColor:'blue', color:'white'}}>ActivityIndicator</Text>
<ActivityIndicator size="large" color="red" />
</View>
)
}
export default App;
Comments
Post a Comment