Animated API
本章中,我们会集中讲解Animated
的API和各种方法,代码示例和什么场景下使用它们。
相关的官方文档:https://facebook.github.io/react-native/docs/animations.html
要使用Animated的话只需要引入先关的模块:
import React from 'react';
import {
View,
Animated
} from 'react-native';
默认的情况下,Animated
支持三个View:Aniamted.View
,Animated.Text
和Animated.Image
。
最后,我们会详细的了解如何让任意的组件都可以支持动画。