Created
March 8, 2021 09:57
-
-
Save sobstel/8b1b58dfe0b2f425d0850cb0f22a92c5 to your computer and use it in GitHub Desktop.
Revisions
-
sobstel created this gist
Mar 8, 2021 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,19 @@ // https://github.com/oblador/react-native-animatable/issues/132#issuecomment-786870602 const MyComponent = (props) => { const ref = React.useRef(); React.useEffect(() => { ref?.current?.fadeIn(); return () => ref?.current?.fadeOut(); // as you know, this is the same as unmount ;) }, [props.id]); // track some prop that changes return ( <Animatable.View ref={ref}> <View> ...stuff </View> </Animatable.View> ); };