Is it possible to show an animation where the user clicked on the screen in flutter. I would like a small animated star to appear right where the user pressed on the screen.
I have this animation which for the moments just loops but i only want it to loop while the user presses the screen.
new Container(
alignment: Alignment(0.0, -1.0),
child: new Container(
height: 410.0,
child: FlareActor(
"assets/images/nyastar.flr",
animation: _animationName,
)
)
),
Source: https://stackoverflow.com/a/46566392/5882307