Skip to content

Instantly share code, notes, and snippets.

@Gguigre
Created January 16, 2019 20:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Gguigre/bda8b7aa55fd21f2de990b6de2d2c560 to your computer and use it in GitHub Desktop.
Save Gguigre/bda8b7aa55fd21f2de990b6de2d2c560 to your computer and use it in GitHub Desktop.
Basic TransitionView component
//...
render() {
const { ...rest } = this.props;
return (
<Animatable.View
animation="fadeIn"
duration={theme.transitionDuration}
useNativeDriver
{...rest}
/>
);
}
//...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment