Contents
React Native Confetti Cannon
This is an example to make a Gift Card Screen using react-native-confetti-cannon for Android and IOS devices. You can create any types of screens using react-native-confetti-cannon. You have seen this type of animations whenever you got a gift voucher or any cashback amount. Have a look at the sample code and comment below with more suggestions and amazing idea which can be done using Confetti Cannon.:)
In this example, we will see how to create a Gift Card Screen using react-native-confetti-cannon. So let’s get started.
Import ConfettiCannon using
import ConfettiCannon from 'react-native-confetti-cannon';
To Show ConfettiCannon
<ConfettiCannon
count={200}
origin={{ x: -10, y: 0 }}
/>
For this example, we will create a gift card using Basic View and Text Component provided by React Native. We have created a state shoot which will decide the fire of Confetti Cannon.
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
npm install -g react-native-cli
Run the following commands to create a new React Native project
react-native init ProjectName
If you want to start a new project with a specific React Native version, you can use the --version argument:
react-native init ProjectName --version X.XX.X
react-native init ProjectName --version react-native@next
This will make a project structure with an index file named App.js in your project directory.
Installation of Dependency
To use ConfettiCannon
component we need to install react-native-confetti-cannon
dependency.
To install this open the terminal and jump into your project using
cd ProjectName
Run the following command to install
npm install react-native-confetti-cannon --save
This command will copy all the dependency into your node_module directory.
–save is optional, it is just to update the react-native-confetti-cannon dependency in your package.json file.
Code
Now Open App.js in any code editor and replace the code with the following code
App.js
// Gift Card Screen using react-native-confetti-cannon
// https://aboutreact.com/react-native-confetti-cannon/
// import React in our code
import React, {useEffect, useState} from 'react';
// import all the components we are going to use
import {
SafeAreaView,
Text,
View,
StyleSheet,
Image,
} from 'react-native';
//Import Library to make a cannon
import ConfettiCannon from 'react-native-confetti-cannon';
const App = () => {
const [shoot, setShoot] = useState(false);
useEffect(() => {
//Time out to fire the cannon
setTimeout(() => {
setShoot(true);
}, 1000);
}, []);
const handlePress = () => {
//To fire the cannon again
setShoot(false);
setTimeout(() => {
setShoot(true);
}, 500);
};
return (
<SafeAreaView style={styles.container}>
<View style={styles.container}>
{/*Card to show the Gift*/}
<View style={styles.cardStyle}>
<Text style={styles.headingStyle}>
Congrates !!
</Text>
<View style={styles.simpleLineStyle} />
<Text style={styles.paragraph}>
You got a Cashback
</Text>
<Image
style={styles.logoStyle}
source={{
uri:
'https://raw.githubusercontent.com/AboutReact/sampleresource/master/gift.png',
}}
/>
<Text style={styles.textLargeStyle}>
$22.22
</Text>
<View
style={{
marginTop: 20,
backgroundColor: 'green',
width: '100%',
}}>
<Text
style={{
color: 'white',
fontSize: 18,
padding: 10,
textAlign: 'center',
}}
onPress={handlePress}>
Claim
</Text>
</View>
</View>
{/*Cannon which will fire whenever shoot is true*/}
{shoot ?
<ConfettiCannon
count={200}
origin={{x: -10, y: 0}}
/>
: null
}
</View>
</SafeAreaView>
);
};
export default App;
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
paddingTop: 30,
backgroundColor: '#ecf0f1',
padding: 12,
},
cardStyle: {
alignItems: 'center',
justifyContent: 'center',
padding: 24,
backgroundColor: 'white',
},
textLargeStyle: {
margin: 24,
fontSize: 40,
fontWeight: 'bold',
textAlign: 'center',
color: 'green',
},
simpleLineStyle: {
backgroundColor: 'grey',
width: '100%',
height: 1,
},
headingStyle: {
margin: 24,
fontSize: 20,
fontWeight: 'bold',
textAlign: 'center',
color: 'green',
},
paragraph: {
margin: 24,
fontSize: 18,
textAlign: 'center',
},
logoStyle: {
height: 84,
width: 84,
},
});
To Run the React Native App
Open the terminal again and jump into your project using.
cd ProjectName
To run the project on an Android Virtual Device or on real debugging device
react-native run-android
or on the iOS Simulator by running (macOS only)
react-native run-ios
Output Screenshots
Output in Online Emulator
This is how you can create a Gift Card Screen using react-native-confetti-cannon for Android and IOS. If you have any doubts 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. 🙂