Resolve "Budget"

This commit is contained in:
Thomas Schleicher 2023-12-20 18:36:43 +00:00
parent ab2a03ba0b
commit 5a9b76a3ff
9 changed files with 60 additions and 33 deletions

View file

@ -0,0 +1,23 @@
import { StyleSheet, View } from "react-native";
const LoadingSymbol = () => {
const color = ["blue", "red", "purple", "green", "yellow", "orange"];
const random = Math.floor(Math.random() * color.length);
const styles = StyleSheet.create({
container: {
backgroundColor: color[random],
width: "100%",
height: "100%",
position: "absolute",
}
});
return (
<View style={styles.container}></View>
);
}
export default LoadingSymbol;