gpt4 book ai didi

animation - 无法将 React Native Animated 值设置为 View 组件 CSS 样式

转载 作者:行者123 更新时间:2023-12-04 02:29:43 26 4
gpt4 key购买 nike

我正在尝试让 View 组件样式动画化。我正在关注此处列出的示例:https://facebook.github.io/react-native/docs/animations.html

但是,当我渲染组件时,出现错误:

[tid:com.facebook.React.ShadowQueue][RCTConvert.m:55] Error setting property 'height' of RCTView with tag #7: JSON value '{ "_animation" = ""; "_children" = ( ); "_listeners" = { }; "_offset" = 0; "_value" = 200; }' of type NSDictionary cannot be converted to NSNumber



这就是我在构造函数中设置 Animated 值的方式:
  constructor() {
super();
this.state = {
titleContainerHeight: new Animated.Value(200),
}
}

这是我的观点:
<View style={[styles.titleContainer,{height:this.state.titleContainerHeight}]}>
<Text style={[{color: 'white'}]}>App logo here</Text>
</View>

似乎我正在按照文档描述的方式进行所有操作,并且我正在另一个组件中执行相同的操作而没有出现任何错误。那么,这里有什么问题呢?

最佳答案

啊没关系,我发现我做错了什么。我忘了专门使用“Animated.View”组件。这有效:

<Animated.View style={[styles.titleContainer,{height:this.state.titleContainerHeight}]}>
<Text style={[{color: 'white'}]}>App logo here</Text>
</Animated.View>

关于animation - 无法将 React Native Animated 值设置为 View 组件 CSS 样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33396930/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com