admin管理员组文章数量:1344682
Need a little help with some JS. Is it possible to bind an animated event as needed below?
I need to do this:
onScroll={
Animated.event([
{
nativeEvent: {
contentOffset: {y: this.state.animTop}
}
}
])
}
I also need to do this
onScroll={(e) => {
let positionY = e.nativeEvent.contentOffset.y;
this._handleScroll(positionY);
this.setState({y: positionY})
}}
I have tried binding both like this, but it not take doing the Animated.event
ponentDidMount() {
this._handleScroll = this._handleScroll.bind(this);
}
onScroll={
this._handleScroll
}
_handleScroll(e) {
Animated.event([
{
nativeEvent: {
contentOffset: {y: this.state.animTop}
}
}
]);
if(e > 30) {
this.setState({statusBarHidden: true});
} else {
this.setState({statusBarHidden: false});
}
}
Need a little help with some JS. Is it possible to bind an animated event as needed below?
I need to do this:
onScroll={
Animated.event([
{
nativeEvent: {
contentOffset: {y: this.state.animTop}
}
}
])
}
I also need to do this
onScroll={(e) => {
let positionY = e.nativeEvent.contentOffset.y;
this._handleScroll(positionY);
this.setState({y: positionY})
}}
I have tried binding both like this, but it not take doing the Animated.event
ponentDidMount() {
this._handleScroll = this._handleScroll.bind(this);
}
onScroll={
this._handleScroll
}
_handleScroll(e) {
Animated.event([
{
nativeEvent: {
contentOffset: {y: this.state.animTop}
}
}
]);
if(e > 30) {
this.setState({statusBarHidden: true});
} else {
this.setState({statusBarHidden: false});
}
}
Share
edited Mar 10, 2017 at 16:19
Felix Kling
818k181 gold badges1.1k silver badges1.2k bronze badges
asked Mar 10, 2017 at 10:52
Malte Schulze-BoeingMalte Schulze-Boeing
1,14511 silver badges14 bronze badges
2 Answers
Reset to default 11Finally got it work:
Bound the function to the Animated.event listener:
onScroll={Animated.event(
[{ nativeEvent: { contentOffset: { y: this.state.animTop } } }],
{ listener: this._handleScroll },
)}
You could also use setValue()
.
So that would work like this:
_handleScroll(event) {
// Do stuff
this.state.animTop.setValue(event.nativeEvent.contentOffset.y);
// Do other stuff
}
本文标签: javascriptReact native bind animated eventStack Overflow
版权声明:本文标题:javascript - React native bind animated event - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743692696a2522976.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论