react-native-confetti-view
v1.0.0
Published
Making it rain with little coloured things falling down on your screen.
Downloads
5
Readme
Confetti View
Installation
Using NPM:
npm i react-native-confetti-view
Using Yarn:
yarn add react-native-confetti-view
Usage
Also, see the example directory.
import React from 'react'
import { Text } from 'react-native'
import ConfettiView from '../index'
export default class MyView extends React.Component {
render () {
return (
<ConfettiView>
<Text>Hi!</Text>
</ConfettiView>
)
}
}