Skip to content

Instantly share code, notes, and snippets.

@kylpo

kylpo/block2.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/a2d3b0dfd03c04117f0ccb548e51bfa5 to your computer and use it in GitHub Desktop.
Save kylpo/a2d3b0dfd03c04117f0ccb548e51bfa5 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