How to implement swipe to previous page in Flutter

2019-05-11 10:15发布

问题:

Go back feature works only on the edge of the screen on iPhone. How can I swipe to previous page from anywhere on the screen?

回答1:

Use CupertinoPageRoute to make it work on Android.



回答2:

You are most likely looking for PageView which allows swip to go next/previous page gesture.



回答3:

correct way is :

add this to your app theme :

theme: ThemeData(
    pageTransitionsTheme: PageTransitionsTheme(
      builders: {
        TargetPlatform.android: CupertinoPageTransitionsBuilder(),
        TargetPlatform.iOS: CupertinoPageTransitionsBuilder(),
      }
    )
),


标签: dart flutter