React Native - Animações
Neste capítulo, mostraremos como usar LayoutAnimation em React Native.
Componente de Animações
Vamos definir myStylecomo propriedade do estado. Esta propriedade é usada para estilizar um elemento dentroPresentationalAnimationComponent.
Também criaremos duas funções - expandElement e collapseElement. Essas funções irão atualizar os valores do estado. O primeiro usará ospring animação predefinida, enquanto a segunda terá o linearpredefinido. Vamos passar isso como adereços também. oExpand e a Collapse botões chamam o expandElement() e collapseElement() funções.
Neste exemplo, vamos alterar dinamicamente a largura e a altura da caixa. Desde oHome componente será o mesmo, vamos apenas mudar o Animations componente.
App.js
import React, { Component } from 'react'
import { View, StyleSheet, Animated, TouchableOpacity } from 'react-native'
class Animations extends Component {
componentWillMount = () => {
this.animatedWidth = new Animated.Value(50)
this.animatedHeight = new Animated.Value(100)
}
animatedBox = () => {
Animated.timing(this.animatedWidth, {
toValue: 200,
duration: 1000
}).start()
Animated.timing(this.animatedHeight, {
toValue: 500,
duration: 500
}).start()
}
render() {
const animatedStyle = { width: this.animatedWidth, height: this.animatedHeight }
return (
<TouchableOpacity style = {styles.container} onPress = {this.animatedBox}>
<Animated.View style = {[styles.box, animatedStyle]}/>
</TouchableOpacity>
)
}
}
export default Animations
const styles = StyleSheet.create({
container: {
justifyContent: 'center',
alignItems: 'center'
},
box: {
backgroundColor: 'blue',
width: 50,
height: 100
}
})