mirror of
https://github.com/lemeow125/StudE-Frontend.git
synced 2025-04-19 08:21:22 +08:00
17 lines
598 B
TypeScript
17 lines
598 B
TypeScript
import * as React from "react";
|
|
import styles from "../../styles";
|
|
import { View, Text, ActivityIndicator } from "react-native";
|
|
import { colors } from "../../styles";
|
|
import AnimatedContainer from "../../components/AnimatedContainer/AnimatedContainer";
|
|
|
|
export default function Loading() {
|
|
return (
|
|
<View style={styles.background}>
|
|
<AnimatedContainer>
|
|
<View style={{ paddingVertical: 8 }} />
|
|
<ActivityIndicator size={128} color={colors.secondary_1} />
|
|
<Text style={styles.text_white_medium}>Loading StudE...</Text>
|
|
</AnimatedContainer>
|
|
</View>
|
|
);
|
|
}
|