expo-confetti
Version:
Animated confetti component for React Native (Expo). Compatible with iOS, Android. Written in JavaScript.
94 lines (66 loc) • 2.06 kB
Markdown
# Expo-confetti
Animated confetti component for React Native (Expo). Compatible with iOS, Android.
Written in JavaScript.

## Installation
Install expo-confetti:
```bash
yarn add expo-confetti / npm install expo-confetti
```
Your `babel.config.js` should be:
```bash
module.exports = function(api) {
api.cache(true);
return {
presets: ['babel-preset-expo'],
plugins: [
[
'react-native-reanimated/plugin', {
relativeSourceLocation: true,
},
]
],
};
};
```
## Usage
```javascript
import React, { useState } from "react";
import ConfettiCanvas, { startAnimation } from "expo-confetti";
export default function App() {
const [confettiPieces, setConfettiPieces] = useState([]);
const handleStartAnimation = () => {
startAnimation(setConfettiPieces, ["#deb7ff", "#c785ec", "#a86add", "#8549a7", "#634087"]);
};
return (
<View style={styles.container}>
<ConfettiCanvas confettiPieces={confettiPieces} colors={["#deb7ff", "#c785ec", "#a86add", "#8549a7", "#634087"]} />
<View style={styles.containerButton}>
<TouchableOpacity onPress={handleStartAnimation}>
<Text>Click for start animation</Text>
</TouchableOpacity>
</View>
</View>
);
}
const styles = StyleSheet.create({
container: {
height: "100%",
backgroundColor: "white",
},
containerButton: {
alignItems: "center",
marginTop: 200
}
});
```
## Props
| Name | Type | Description |
| :-------- | :------- | :------------------------- |
| `confettiPieces` | `array` | **Required**.|
| `colors` | `array` | Custom colors for confetti.|
## Authors
- [reasky](https://www.github.com/reasky)
## Feedback
**Telegram:** [t.me/dev_nikita](https://t.me/dev_nikita) \
**VKontakte**: [vk.com/reasky](https://vk.com/reasky)