funwithflutter / flutter_confetti

A Flutter widget that shoots confetti all over the screen.
https://pub.dev/packages/confetti
MIT License
439 stars 79 forks source link

Emitter Position #54

Open sarpde opened 3 years ago

sarpde commented 3 years ago

I wrap my elements with ConfettiWidget which is clean and convenient but I couldn't figure out a way to change emitter position. It is always on topLeft. What I'd like to do is emit particles from top or center of my element (stars in this example)

Screen Shot 2021-10-02 at 19 39 40

Is it possible?

Junama commented 3 years ago

I have the same issue. I fix it with a padding and a blastDirection: pi /2

Petri-Oosthuizen commented 2 years ago

The alignment widget works quite well to position the emitter position.

Align(
  alignment: Alignment.topCenter,
  child: ConfettiWidget(
    ...
  ),
)