我的应用程序因代码 <Animated.View style={[{ marginBottom: marginAnim }]}>
中的这一行而崩溃,并且我收到错误 Error: Style property 'marginBottom' is not supported by native animated module
。我的 marginAnim
中的 state
设置为 marginAnim: new Animated.Value(10, { useNativeDriver: true })
。我如何将 marginBottom
应用于组件 Animated.View
?