flutter go to previous page code example
Example 1: flutter push route
// Within the `FirstRoute` widget
onPressed: () {
Navigator.push(
context,
MaterialPageRoute(builder: (context) => SecondRoute()),
);
}
Example 2: flutter not navigating to a new screen
Wrap the new screen with a Scaffold widget
//navigation page
return GestureDetector(
onTap: () {
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => DestinationScreen()),
);
}
// new screen page
class _DestinationScreenState extends State {
@override
Widget build(BuildContext context) {
return Scaffold();
}
}
Example 3: flutter how to get call back from current page to previous page
Future _goToPage2() async {
await Navigator.push(
context,
MaterialPageRoute(
builder: (context) => Page2(),
),
);
print("Page2 is poped");
}