This is an Example of React Native Flip Image Horizontally Using Animation. We are using the property of Animated
Component from react-native
. In this Example, We will flip the image on click of Button. So let’s get started.
To Make a React Native App
Getting started with React Native will help you to know more about the way you can make a React Native project. We are going to use react-native init to make our React Native App. Assuming that you have node installed, you can use npm to install the react-native-cli
command line utility. Open the terminal and go to the workspace and run
Open App.js in any code editor and replace the code with the following code.
App.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | /*This is an Example of React Native Flip Image Horizontally Using Animation*/ import React, { Component } from 'react'; import { StyleSheet, View, Text, TouchableOpacity, Animated, } from 'react-native'; export default class App extends Component { constructor() { super(); this.animatedValue = new Animated.Value(0); this.value = 0; this.animatedValue.addListener(({ value }) => { this.value = value; }); } flip_Animation = () => { if (this.value >= 90) { Animated.spring(this.animatedValue, { toValue: 0, tension: 10, friction: 8, }).start(); } else { Animated.spring(this.animatedValue, { toValue: 180, tension: 10, friction: 8, }).start(); } }; render() { this.SetInterpolate = this.animatedValue.interpolate({ inputRange: [0, 180], outputRange: ['180deg', '360deg'], }); const Rotate_Y_AnimatedStyle = { transform: [{ rotateY: this.SetInterpolate }], }; return ( <View style={styles.MainContainer}> <Animated.Image source={{ uri: 'http://aboutreact.com/wp-content/uploads/2018/08/desktop-computer-screen-with-arrow-to-the-left-and-coin-stack.png', }} style={[Rotate_Y_AnimatedStyle, styles.imageStyle]} /> <TouchableOpacity style={styles.button} onPress={this.flip_Animation}> <Text style={styles.TextStyle}> Click Here To Flip The Image </Text> </TouchableOpacity> </View> ); } } const styles = StyleSheet.create({ MainContainer: { flex: 1, alignItems: 'center', justifyContent: 'center', }, imageStyle: { width: 150, height: 150, borderRadius: 6, }, button: { width: '80%', backgroundColor: '#BAF5B5', borderRadius: 6, marginTop: 20, }, TextStyle: { color: '#000', textAlign: 'center', padding: 5, fontSize: 18, }, }); |
To Run the React Native App
Open the terminal again and jump into your project using.This is how you can flip the image horizontally using Animation. If you have any doubt or you want to share something about the topic you can comment below or contact us here. There will be more posts coming soon. Stay tuned!
Hope you liked it. 🙂
How useful was this post?
Click on a star to rate us!
Average rating / 5. Vote count:
We are sorry that this post was not useful for you!
Let us improve this post!
Thanks for your feedback!