gpt4 book ai didi

reactjs - React Native 复活不适用于插值

转载 作者:行者123 更新时间:2023-12-05 01:29:26 37 4
gpt4 key购买 nike

我尝试使用 Animated.interpolate 但我遇到了一个我从未遇到过的奇怪错误。如何解决?谢谢

- enter image description here

最佳答案

使用插值的变量应该在 useAnimatedStyle 中。

const positionX = useSharedValue(-40);
const animatedStyles = useAnimatedStyle(() => {
const opacity = interpolate(positionX.value, [-40, 0], [0, 1]); // <- It must be here to work.
return {
transform: [{ translateX: positionX.value }],
opacity,
};
});

关于reactjs - React Native 复活不适用于插值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67781192/

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