-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ActivityIndicator Bug on First Load #2332
Comments
Couldn't find version numbers for the following packages in the issue:
Can you update the issue to include version numbers for those packages? The version numbers must match the format 1.2.3. The versions mentioned in the issue for the following packages differ from the latest versions on npm:
Can you verify that the issue still exists after upgrading to the latest versions of these packages? |
Couldn't find version numbers for the following packages in the issue:
Can you update the issue to include version numbers for those packages? The version numbers must match the format 1.2.3. The versions mentioned in the issue for the following packages differ from the latest versions on npm:
Can you verify that the issue still exists after upgrading to the latest versions of these packages? |
It only happens with that specific Android version or also on iOS and newer Android versions? |
Hello 👋, this issue has been open for more than 2 months with no activity on it. If the issue is still present in the latest version, please leave a comment within 7 days to keep it open, otherwise it will be closed automatically. If you found a solution on workaround for the issue, please comment here for others to find. If this issue is critical for you, please consider sending a pull request to fix the issue. |
FWIW, I saw a similar issue, turns out it was a around an in my code. |
I see this issue to when I navigate between screens using react-navigation. Would this issue be able to be re opened. |
I see similar issue with react-native-reanimated and react-navigation. import { ActivityIndicator } from "react-native-paper";
import Animated, { FadeOutUp } from "react-native-reanimated";
...
return (
<Animated.View exiting={FadeOutUp}>
<ActivityIndicator size={"large"} animating={animating} />
</Animated.View>
) |
How to fixed? I stuck in here case |
FYI I am also facing the issue |
In my case, it's related to how the event loop works. I will need to execute |
Current behaviour
I'm using ActivityIndicator on a page and every first load I see a momentary glitch where there are two indicators. Video below.
Expected behaviour
I don't expect a double ActivityIndicator
Code sample
Screenshots (if applicable)
https://d.pr/MJK9rn
What have you tried
Using other components and seeing if they exhibit same behavior. (They don't)
I thought it might be a metro server thing, but upon generating a release apk and sideloading, I see the same thing. I'm not using any other animation library that would conflict.
I tried react-native's default ActivityIndicator and it doesn't exhibit this behavior.
Your Environment
The text was updated successfully, but these errors were encountered: