nisrulz / flutter-examples

[Examples] Simple basic isolated apps, for budding flutter devs.
https://nisrulz.com/flutter-examples/
Apache License 2.0
6.97k stars 1.67k forks source link

How to use Navigator.pop #31

Closed damon-zhu closed 4 years ago

damon-zhu commented 5 years ago

In my project, i use Navigator.push from A to B. Now I want to back to A. So i use Navigator.pop in page B. But the screen show black, i have to press the Back button on my Android Emulator to back to A. image image

LiuL0703 commented 5 years ago
Navigator.of(context).pop()

@damon-zhu

nisrulz commented 4 years ago

Closing this issue as @LiuL0703 answer is valid.