Skip to main content
Version: 7.3.0

Hello Animation

API Reference: UI.Animator

UI.Animator is used to perform transform animations inside a layout. All you have to do is to pass functions setting the final condition of the UI objects and let Animator execute those functions with animation. In this tutorial, we will be creating a basic animation step by step so that we will know the basics of the animations with Animator.

Initial Setup

Let's say we have a view inside a flex layout in a page with the setup below:

import View from "@smartface/native/ui/view";

const animatedView = new View({
left: 1,
top: 1,
width: 100,
height: 100,
positionType: FlexLayout.PositionType.ABSOLUTE,
backgroundColor: Color.create("#00A1F1"),
});

onLoad() {
super.onLoad();
this.headerBar.visible = false;
Application.statusBar.visible = false;

flexLayout.borderWidth = 1;
flexLayout.addChild(animatedView);
}

UI.Animator Functions

Let's say we want to expand the button and then shrink it to the initial size.

To do that, we must start with the first step, growing.

onShow() {
super.onShow();
// animate is the initial function to start an animation
// @param layout having the animating object
// @param duration in milliseconds
// @param function having the final condition of the objects
Animator.animate(flexLayout, 1000, function () {
animatedView.width = 300;
animatedView.height = 300;
});
}
Note that:

Put the animation inside onShow method if you want to animate things right after the page is ready so that we can observe the animation.

Now we add the shrink animation. However, this time we will be using another method to continue our animation.

onShow() {
super.onShow();
// then is used to create a sequence of animations
// @param duration in milliseconds
// @param function having the final condition of the objects in each then
Animator.animate(flexLayout, 1000, function () {
animatedView.width = 300;
animatedView.height = 300;
})
.then(3000, function () {
animatedView.width = 5;
animatedView.height = 5;
})
.then(1000, function () {
animatedView.width = 100;
animatedView.height = 100;
});
}

Finally, we conclude our animation by giving color to the view object.

onShow() {
// complete is used to indicate the animation is finished
Animator.animate(flexLayout, 1000, function () {
animatedView.width = 300;
animatedView.height = 300;
})
.then(3000, function () {
animatedView.width = 5;
animatedView.height = 5;
})
.then(1000, function () {
animatedView.width = 100;
animatedView.height = 100;
})
.complete(function () {
animatedView.backgroundColor = Color.GREEN;
});
}
Do Not Forget:

Complete does not perform any animations but indicates that the all animation sequences are finished.

/scripts/pages/page1.ts
import Page1Design from "generated/pages/page1";
import Animator from "@smartface/native/ui/animator";
import Application from "@smartface/native/application";

export default class Page extends Page1Design {
constructor(private router?: Router, private route?: Route) {
super({});
}
animate() {
Animator.animate(this.layout, 1000, () => {
this.animatedView.dispatch({
type: "updateUserStyle",
userStyle: {
width: 300,
height: 300,
},
});
})
.then(3000, () => {
this.animatedView.dispatch({
type: "updateUserStyle",
userStyle: {
width: 5,
height: 5,
},
});
})
.then(1000, () => {
this.animatedView.dispatch({
type: "updateUserStyle",
userStyle: {
width: 100,
height: 100,
},
});
})
.complete(() => {
this.animatedView.dispatch({
type: "updateUserStyle",
userStyle: {
backgroundColor: "#00FF00",
},
});
});
}

onShow() {
super.onShow();
this.animate();
}

onLoad() {
super.onLoad();
this.headerBar.visible = false;
Application.statusBar.visible = false;
this.dispatch({
type: "updateUserStyle",
userStyle: {
borderWidth: 1,
},
});
}
}

Please refer this document for UI Editor and dispatch:

Using Style and Classes