13 lines
400 B
JavaScript
13 lines
400 B
JavaScript
import React from "react";
|
|
import { View, Text } from "react-native";
|
|
import { BarIndicator } from "react-native-indicators";
|
|
import { Container, Content } from "native-base";
|
|
|
|
export default function LoadingDisplay({ count = 5 }) {
|
|
return (
|
|
<View style={{ flex: 1, alignContent: "center", justifyContent: "center" }}>
|
|
<BarIndicator count={count} color="dodgerblue" />
|
|
</View>
|
|
);
|
|
}
|