Skip to content

Instantly share code, notes, and snippets.

@kmagiera
Created June 12, 2020 07:58
Show Gist options
  • Save kmagiera/239b75c6aa2c5835eac620f5091bb37c to your computer and use it in GitHub Desktop.
Save kmagiera/239b75c6aa2c5835eac620f5091bb37c to your computer and use it in GitHub Desktop.
function SomeComponent() {
const randomWidth = useSharedValue(64);
const style = useAnimatedStyle(() => {
return {
// get the value carried by `randomWidth` SV by accessing value field
width: randomWidth.value,
};
});
return (
<View style={styles.container}>
<Animated.View style={[styles.box, style]} />
</View>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment