Published
- 1 min read
react native indicator
The solution for this is noted below
react native indicator
Solution
import { View, ActivityIndicator } from "react-native";
function MyActivityIndicator = () => {
return (
<View style={{ flex: 1, justifyContent: "center"}}>
<ActivityIndicator size="large" color="#00ff00" />
</View>
);
}
export default MyActivityIndicator;
Try other methods by searching on the site. That is if this doesn’t work