有没有办法手动设置Animate.event中的dy值?
Is there a way to manually set the dy value in Animate.event?
我希望能够在满足条件时将 table 提升到特定高度。如何手动设置dy的值? this.state.drag.y
returns 一个对象。如果是一个简单的值,我可以手动设置它,但是在这种情况下如何手动设置dy?
onPanResponderMove: (e, gestureState) => {
return Animated.event([null, {
dy: this.state.drag.y,
}])(e, gestureState)
},
想通了 -
return Animated.event([null, {
dy: this.state.drag.setValue({ x: 0, y: "value" }),
}])(e, gestureState)
其中 value 可以是您想要手动设置的任何值。
我希望能够在满足条件时将 table 提升到特定高度。如何手动设置dy的值? this.state.drag.y
returns 一个对象。如果是一个简单的值,我可以手动设置它,但是在这种情况下如何手动设置dy?
onPanResponderMove: (e, gestureState) => {
return Animated.event([null, {
dy: this.state.drag.y,
}])(e, gestureState)
},
想通了 -
return Animated.event([null, {
dy: this.state.drag.setValue({ x: 0, y: "value" }),
}])(e, gestureState)
其中 value 可以是您想要手动设置的任何值。