I am currently using persistent_bottom_nav_bar: ^4.0.2
and rflutter_alert
but the problem is when I call Navigator.of(context).pop();
I always get this error:
FlutterError (This widget has been unmounted, so the State no longer has a context (and should be considered defunct).
Consider canceling any active work during "dispose" or using the "mounted" getter to determine if the State is still active.)
That happens when I use persistent_bottom_nav_bar
, I have tried to use bottomNavigationBar
which is a property of Scaffold
widget, and that's really fine and there is no problem with Navigator.of(context).pop();
. Is there a way to do Navigator pop when using persistent_bottom_nav_bar