How to update the Homepage just after the showDialog() is dismissed/disposed? Doesn\'t seem like it has an onDispose() function.
showDialog()
onDispose()
Found another
If you have made another StatefulWidget for your DialogBox and onDissmissed, you want to call some function in the "dialog calling widget". You can this snippet.
await showDialog( context: context, builder: (_) => MenuBox(), ); print("now closed");