ns-view-animations

Installation
SKILL.md

view.animate(): promises, cancel, transforms

import { CoreTypes } from '@nativescript/core';

await view.animate({
  translate: { x: 0, y: -24 },
  opacity: 1,
  duration: 220,
  curve: CoreTypes.AnimationCurve.easeInOut, // ease, easeIn, easeOut, easeInOut, linear, spring, cubicBezier(...)
});

Animatable: opacity, backgroundColor, translate, scale, rotate, width, height (+ duration, delay, iterations, curve, target).

The three failure shapes

Installs
19
GitHub Stars
1
First Seen
Aug 28, 2026
ns-view-animations — nativescript/skills