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(),
}
)
),