Hi there.
I am trying to replicate example of how animate until a variable is false and I only make it works with bounce animation. When I try with fadein or another is says: The provided animation trigger "enter" has not been registered!
My code:
component.html
<div [@fadeInOnEnter]="animState" (@fadeInOnEnter.done)="onAnimationEvent($event)" class="app-logo"></div>
component.ts
import { fadeInOnEnterAnimation} from 'angular-animations';
animations: [
fadeInOnEnterAnimation({ duration: 1000, delay: 2000 }),
]