Swift package for displaying configurable confetti animation.
Find the demo project here.
It requires iOS 13 and Xcode 11!
In Xcode go to File -> Swift Packages -> Add Package Dependency
and paste in the repo's url: https://github.com/simibac/ConfettiSwiftUI
and select master branch.
Import the package in the file you would like to use it: import ConfettiSwiftUI
struct ContentView: View {
@State var counter:Int = 0
var body: some View {
ZStack{
Text("๐").font(.system(size: 50)).onTapGesture(){counter += 1}
ConfettiCannon(counter: $counter)
}
}
}
Added an example project, with iOS target: https://github.com/simibac/ConfettiSwiftUIDemo
Code:
ConfettiCannon(counter: $counter1)
Code:
ConfettiCannon(counter: $counter2, colors: [.red, .black], confettiSize: 20)
Code:
ConfettiCannon(counter: $counter3, repetitions: 3, repetitionInterval: 0.7)
Code:
ConfettiCannon(counter: $counter4, num: 50, openingAngle: Angle(degrees: 0), closingAngle: Angle(degrees: 360), radius: 200)
Code:
ConfettiCannon(counter: $counter5, emojis: ["โค๏ธ", "๐", "๐", "๐งก"])
Code:
ConfettiCannon(counter: $counter6, num:1, emojis: ["๐ฉ"], confettiSize: 20, repetitions: 100, repetitionInterval: 0.1)
Code:
ConfettiCannon(counter: $counter7, num:1, emojis: ["๐ต", "๐ถ", "๐ท", "๐ด"], confettiSize: 30, repetitions: 50, repetitionInterval: 0.1)
parameter | type | description | default |
---|---|---|---|
counter | Binding | on any change of this variable triggers the animation | 0 |
num | Int | amount of confettis | 20 |
emojis | [String] | list of emojis as strings | String |
includeDefaultShapes | Bool | include default confetti shapes such as circle | true |
colors | [Color] | list of colors applied to the default shapes | [.blue, .red, .green, .yellow, .pink, .purple, .orange] |
confettiSize | CGFloat | size that confettis and emojis are scaled to | 10.0 |
rainHeight | CGFloat | vertical distance that confettis pass | 600.0 |
fadesOut | Bool | size that confettis and emojis are scaled to | true |
opacity | Double | maximum opacity during the animation | 1.0 |
openingAngle | Angle | boundary that defines the opening angle in degrees | Angle.degrees(60) |
closingAngle | Angle | boundary that defines the closing angle in degrees | Angle.degrees(120) |
radius | CGFloag | explosion radius | 300.0 |
repetitions | Int | number of repetitions fo the explosion | 0 |
repetitionInterval | Double | duration between the repetitions | 1.0 |