是否可以在 Flutter 中使用滑动手势打开和关闭新的 activity?

Is it possible to open and close a new activity with swipe gesture in Flutter?

我想在 Android 中用滑动手势打开和关闭一个新的 activity 它可以使用像 Slidr 这样的库来完成,但是我们如何在颤动中实现同样的效果。

Click link to youtube video to get the idea about how it is done in Android.

Check the transition from one activity page to another

我建议改用 PageView 小部件,因为您只想检测左右滑动。

示例代码:

PageView(
  controller : PageController(initialPage: 1)
  children: <Widget>[
    Container(color: Colors.red),//  1st Page (Left)
    Container(color Colors.blue),//  Default Current Page (2nd Page)
    Container(color: Colors.green), // 3rd Page (Right)
  ],
)