Created
June 12, 2020 07:58
-
-
Save kmagiera/19f1acca425f85ca78862de41ed0fef9 to your computer and use it in GitHub Desktop.
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 characters
return ( | |
<View style={styles.container}> | |
<Animated.View style={[styles.box, style]} /> | |
<Button | |
title="Random width" | |
onPress={() => { | |
randomWidth.value = Math.random() * 150 + 50; | |
}} | |
/> | |
</View> | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment