I'm a newbie to flutter development, please forgive if me if it's a simple question.
I have no idea to implement this feature when user swipe down or swipe left, it will show fade out animation on current page, and the last page will fade in from bottom. Please check the effect on the gif.
I think i need to listen to user's swipe actions, and make the effect by accordingly. But i have no clue about implementing both of them.
GestureDetector(
child: yourChild,
onTapDown: (tapDownDetails){/*your action here*/},
onTapUp: (tapUpDetails){/*your action here*/},
)