Ok it might work

This commit is contained in:
2026-04-25 12:08:14 +02:00
parent 928db54b3e
commit 858ee5e28b
10 changed files with 229 additions and 67 deletions

View File

@@ -0,0 +1,23 @@
import React from "react";
import { View, Text, ActivityIndicator, StyleSheet } from "react-native";
export default function LoadingScreen({ message = "Loading..." }) {
return (
<View style={styles.container}>
<ActivityIndicator size="large" color="#ffffff" />
<Text style={styles.text}>{message}</Text>
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
alignItems: "center",
justifyContent: "center",
},
text: {
marginTop: 10,
fontSize: 16,
},
});