滚动时反应新的hidave navbar



我正在使用React-Native-Navigation-Flux导航库,而且,我正在尝试实施滚动滚动时的Navbar将会消失。有可能实现吗?

谢谢

尝试使用动画,并将navigationbar高度设置为滚动时的零和默认高度。

 class MyAwesomeComponent extends Component {
   constructor(props) {
     super(props);
     this.height = new Animated.Value(100);
   }
   _setAnimation(enable) {
     Animated.timing(this.height, {
       duration: 400,
       toValue: enable? 100 : 0
     }).start()
   } 
   render() {
     return (
       <Animated.View style={{ height: this.height }}/>
     );
  }
}

相关内容

  • 没有找到相关文章

最新更新