Flutter如何实现下拉手势让页面淡出导航回上一页?

How to implement the drag down gesture to make page fade out and navigate back to the last page in Flutter?

我是flutter开发的新手,问题比较简单,还请见谅。

我不知道实现这个功能当用户向下滑动或向左滑动时,它会在当前页面显示淡出动画,最后一页会从底部淡入。请检查gif 上的效果。

我想我需要听取用户的滑动动作,并据此做出效果。但是我不知道如何实现它们。

  1. 对于效果,有多种实现方法,但要了解想法,请查看Animate a widget across screens,从那里您可以找到自己的实现方式。
  2. 对于手势,有一个小部件Gesture Detector。 例如对于 tapDown 和 tapUp 你可以像

GestureDetector( child: yourChild, onTapDown: (tapDownDetails){/*your action here*/}, onTapUp: (tapUpDetails){/*your action here*/}, )