We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
software-mansion/react-native-reanimated#2554
I am using react-native-shimmer. when I update [email protected] and [email protected] then I am receiving the below error
[email protected]
Exception thrown while executing UI block: Attempted to remove non-existent subview
at
https://github.com/software-mansion/react-native-reanimated/blob/ce76e66aaf47c26bb1ff818d72a50b55e092ca05/ios/LayoutReanimation/REAAnimationsManager.m#L101
because it has conflict with react-native-shimmer
RNShimmeringView.m#L28
Should not throw the error.
Repro: https://github.com/nomi9995/ReproNonExistentsubview Throws an error but still works if I just close it.
just installed Package versions which I added below. then below code will reproduce this error
Package versions
import React, {useState} from 'react'; import {SafeAreaView, StyleSheet, Text, View, Button} from 'react-native'; import Shimmer from 'react-native-shimmer'; const App = () => { const [isVisible, setIsVisible] = useState<boolean>(true); return ( <SafeAreaView style={styles.container}> {isVisible && ( <Shimmer> <Text>Loading...</Text> </Shimmer> )} <Button onPress={() => setIsVisible(!isVisible)} title={isVisible ? 'Hide' : 'Visible'} /> </SafeAreaView> ); }; const styles = StyleSheet.create({ container: { flex: 1, justifyContent: 'center', alignItems: 'center', }, }); export default App;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
software-mansion/react-native-reanimated#2554
Description
I am using react-native-shimmer. when I update
[email protected]
and[email protected]
then I am receiving the below errorat
https://github.com/software-mansion/react-native-reanimated/blob/ce76e66aaf47c26bb1ff818d72a50b55e092ca05/ios/LayoutReanimation/REAAnimationsManager.m#L101
because it has conflict with react-native-shimmer
RNShimmeringView.m#L28
Expected behavior
Should not throw the error.
Actual behavior & Steps To Reproduce
Repro: https://github.com/nomi9995/ReproNonExistentsubview
Throws an error but still works if I just close it.
just installed
Package versions
which I added below.then below code will reproduce this error
Package versions
Affected platforms
The text was updated successfully, but these errors were encountered: