我有一个从这里获取的自定义布局动画。
var CustomLayoutAnimation = {
duration: 200,
create: {
type: LayoutAnimation.Types.linear,
property: LayoutAnimation.Properties.opacity,
},
update: {
type: LayoutAnimation.Types.curveEaseInEaseOut,
},
};
运行代码时,我收到以下警告
警告:配置类型失败:配置
config.update.type
在 中标记为必需LayoutAnimation.configureNext
,但其值为undefined
。
该代码有一个 update.type 条目,但警告说它未定义。我猜自编写要点以来允许的值已经更新。我试图找出可用的允许条目列表,但它们未在React Native LayoutAnimation 文档中列出。
我想知道 :
- 语法不再正确吗?
- 某处是否有详细说明可用类型列表的网页?