con-cis

Results 3 comments of con-cis

You can do this with Staggered Animations: https://flutter.dev/docs/development/ui/animations/staggered-animations

I solved by working with HTML Dom Events: ```javascript document.addEventListener("readystatechange", () => { if (document.readyState === "interactive") { // do fancy stuff like not pace.js related stuff (animations etc.) }...