是否有 LayoutAnimation.Types 和 LayoutAnimation.Properties 的可用选项列表?
Is threre a list of available options for LayoutAnimation.Types and LayoutAnimation.Properties?
我已经查看了文档,现在它只说了
create, config for animating in new views (see Anim type)
update, config for animating views that have been updated (see Anim type)
事实是我不明白 Anim 类型是什么以及我应该在哪里处理它。感谢帮助
https://facebook.github.io/react-native/docs/layoutanimation.html
我在 React Native
的 LayoutAnimation.js 源代码中找到了它
const TypesEnum = {
spring: true,
linear: true,
easeInEaseOut: true,
easeIn: true,
easeOut: true,
keyboard: true,
};
const PropertiesEnum = {
opacity: true,
scaleXY: true,
};
我可能遗漏了一些东西,如果还有更多,请随时补充,谢谢:)
我已经查看了文档,现在它只说了
create, config for animating in new views (see Anim type)
update, config for animating views that have been updated (see Anim type)
事实是我不明白 Anim 类型是什么以及我应该在哪里处理它。感谢帮助
https://facebook.github.io/react-native/docs/layoutanimation.html
我在 React Native
的 LayoutAnimation.js 源代码中找到了它const TypesEnum = {
spring: true,
linear: true,
easeInEaseOut: true,
easeIn: true,
easeOut: true,
keyboard: true,
};
const PropertiesEnum = {
opacity: true,
scaleXY: true,
};
我可能遗漏了一些东西,如果还有更多,请随时补充,谢谢:)