Skip to content

Instantly share code, notes, and snippets.

@nikosolihin
Forked from drcmda/index.jsx
Created November 4, 2018 07:20
Show Gist options
  • Save nikosolihin/17f7699b84cd62f42a28410bd0beca90 to your computer and use it in GitHub Desktop.
Save nikosolihin/17f7699b84cd62f42a28410bd0beca90 to your computer and use it in GitHub Desktop.
react-spring with react-native
import React from 'react'
import { StyleSheet, Text, View, TouchableWithoutFeedback } from 'react-native'
import { Spring, animated } from 'react-spring/dist/native'
const styles = {
flex: 1,
margin: 0,
borderRadius: 35,
backgroundColor: 'red',
alignItems: 'center',
justifyContent: 'center',
}
const AnimatedView = animated(View)
export default class App extends React.Component {
state = { flag: true }
toggle = () => this.setState(state => ({ flag: !state.flag }))
render() {
const { flag } = this.state
return (
<Spring
native
from={{ margin: 0, rotate: 0 }}
to={{ margin: flag ? 100 : 0, backgroundColor: flag ? 'green' : 'rgba(0,0,0,0.1)', scale: flag ? 1 : 1.5 }}
config={{ tension: 10, friction: 2 }}>
{({ scale, ...props }) => (
<TouchableWithoutFeedback onPressIn={this.toggle}>
<AnimatedView style={{ ...styles, ...props, transform: [{ scale }] }}>
<Text>It's working!!!!</Text>
</AnimatedView>
</TouchableWithoutFeedback>
)}
</Spring>
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment