MCPcopy Index your code
hub / github.com/ionic-team/ionic-framework / progressStart

Function progressStart

core/src/utils/animation/animation.ts:704–718  ·  view source on GitHub ↗
(forceLinearEasing = false, step?: number)

Source from the content-addressed store, hash-verified

702 };
703
704 const progressStart = (forceLinearEasing = false, step?: number) => {
705 childAnimations.forEach((animation) => {
706 animation.progressStart(forceLinearEasing, step);
707 });
708
709 pauseAnimation();
710 shouldForceLinearEasing = forceLinearEasing;
711
712 if (!initialized) {
713 initializeAnimation();
714 }
715 update(false, true, step);
716
717 return ani;
718 };
719
720 const progressStep = (step: number) => {
721 childAnimations.forEach((animation) => {

Callers

nothing calls this directly

Calls 4

pauseAnimationFunction · 0.85
initializeAnimationFunction · 0.85
progressStartMethod · 0.80
updateFunction · 0.70

Tested by

no test coverage detected