Skip to content

Instantly share code, notes, and snippets.

@kylpo

kylpo/block3.jsx Secret

Created May 22, 2017 18: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 kylpo/48e07eef013628c47a09a906cc57a9a0 to your computer and use it in GitHub Desktop.
Save kylpo/48e07eef013628c47a09a906cc57a9a0 to your computer and use it in GitHub Desktop.
<Event_
onClick={this.handleClick}
>
<Animate_
type='fadeIn'
duration='3000ms'
ref={node => this.animated = node}
>
<Style_
backgroundColor='red'
border='1px solid black'
transition='opacity 10000ms ease'
>
<View
height='500px'
width='200px'
alignHorizontal='center'
alignVertical='center'
>
<Text>Click me</Text>
</View>
</Style_>
</Animate_>
</Event_>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment