fix last issues
This commit is contained in:
parent
497c556a87
commit
7dd17798c4
7 changed files with 20 additions and 17 deletions
|
|
@ -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,
|
||||
},
|
||||
});
|
||||
|
|
|
|||
Reference in a new issue