Skip to content

Instantly share code, notes, and snippets.

@jasmo2
Last active July 5, 2019 14:55
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 jasmo2/fe18e089e52ab7d6135567a1030abff4 to your computer and use it in GitHub Desktop.
Save jasmo2/fe18e089e52ab7d6135567a1030abff4 to your computer and use it in GitHub Desktop.
const initialValue = new Animated.Value(0)
Animated.timing(
// Animate value over time
initialValue, // The value to drive
{
toValue: 1, // Animate to final value of 1
},
).start(); // Start the animation
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment