fix last issues

This commit is contained in:
Jakob Stornig 2024-01-05 21:33:13 +01:00
parent 497c556a87
commit 7dd17798c4
7 changed files with 20 additions and 17 deletions

View file

@ -7,11 +7,6 @@ const LoadingSymbol = () => {
const spinValue = useRef(new Animated.Value(0)).current;
const spin = spinValue.interpolate({
inputRange: [0, 1],
outputRange: [0, 360],
});
useEffect(() => {
Animated.loop(
Animated.timing(spinValue, {
@ -34,7 +29,6 @@ const LoadingSymbol = () => {
loader: {
width: 100,
height: 100,
transform: [{ rotate: spin + "deg"}],
zIndex: 999,
},
});