Currently, I use Navigation to bring up Dialog
. But of course, the page will be changed, and the screen will only display the Dialog
. Like I've shown below.
I want to fix it, so that when the Dialog
appears, the page behind it wouldn't disappear, like in the picture below.
This is my code, with NavigationHelper
, the screen will move to another screen to display Dialog
, which I want to change.
PopupMenuItem(
onTap: () {
GetIt.I<NavigationHelper>().go('/alert_delete_item');
},
value: 'Delete',
),
And this is a template to handle the Dialog
, but I do not know how to use it.
Future<T?> showCustomDialog<T>(BuildContext context) {
return showDialog<T>(
context: context,
builder: (context) => Dialog(
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(16),
),
child: this,
),
);
}
Any tutorial on how to use the function?
Should try this
OutPut: