I am using react-native-auto-skeleton as a wrapper in my app.
below is my code:
const AutoSkeletonWrapper = ({ isLoading, children }) => {
return (
<View>
<AutoSkeletonView isLoading={isLoading}>
{children}
</AutoSkeletonView>
</View>
);
};
Please check below screen recording:
https://drive.google.com/file/d/1WWdqjGRQl55KeYVALMTiPunXk9SV2Xk2/view?usp=sharing
After I apply a filter and then remove it, the list data exists but text does not appear.
Only the skeleton background stays visible.
If I restart the app, everything works again.
If I remove this library, the issue disappears.
Problem Behavior:
- When
isLoading becomes false, real UI sometimes does NOT show.
What I tested:
- Removing the library → everything works.
Environment:
- React Native:
0.82.1
- Library version:
^0.1.30
- Platform: Android / iOS
Request:
@pioner92 , @techadvisorbe
Please check — the skeleton overlay is not clearing after state changes.
Let me know if there is a recommended fix.
I am using
react-native-auto-skeletonas a wrapper in my app.below is my code:
Please check below screen recording:
https://drive.google.com/file/d/1WWdqjGRQl55KeYVALMTiPunXk9SV2Xk2/view?usp=sharing
After I apply a filter and then remove it, the list data exists but text does not appear.
Only the skeleton background stays visible.
If I restart the app, everything works again.
If I remove this library, the issue disappears.
Problem Behavior:
isLoadingbecomes false, real UI sometimes does NOT show.What I tested:
Environment:
0.82.1^0.1.30Request:
@pioner92 , @techadvisorbe
Please check — the skeleton overlay is not clearing after state changes.
Let me know if there is a recommended fix.