ITNEXT

ITNEXT is a platform for IT developers & software engineers to share knowledge, connect, collaborate, learn and experience next-gen technologies.

Follow publication

How to show confetti in SwiftUI

Ben Sage
ITNEXT
Published in
2 min readDec 16, 2024

--

Introduction

How to use

import SwiftUI
import ConfettiView

struct ContentView: View {
@State var showConfetti = false

var body: some View {
Button("Rain on me") {
showConfetti = true
}
.frame(maxWidth: .infinity, maxHeight: .infinity)
.overlay(ConfettiView(isPresented: $showConfetti))
}
}

Conclusion

--

--

Published in ITNEXT

ITNEXT is a platform for IT developers & software engineers to share knowledge, connect, collaborate, learn and experience next-gen technologies.

No responses yet