Home > other >  Flutter Alert dialog is not showing when I debug on chrome
Flutter Alert dialog is not showing when I debug on chrome

Time:01-29

When I debug on chrome the alert dialog is not showing.

My code:

PopupMenuItem(
  value: 1,
  onTap: () {
    ShowMyDialog();
    Navigator.pop(context);
  },
  child: ListTile(
    leading: Icon(Icons.edit),
    title: Text("Edit"),
 ),
),

Future<void> ShowMyDialog() async {
  return await showDialog(
    context: context,
    builder: (BuildContext context) {
      return AlertDialog(
        title: Text("Update"),
        content: Container(
          child: TextField(
            controller: editingController,
          ),
        ),
        actions: [
          TextButton(
            onPressed: () {
              Navigator.pop(context);
            },
            child: Text("Cancel"),
          ),
          TextButton(
            onPressed: () {
              Navigator.pop(context);
            },
            child: Text("Update"),
          ),
        ],
      );
    },
  );
}

CodePudding user response:

Pass context to ShowMyDialog() method. like ShowMyDialog(context);

CodePudding user response:

  onTap: () {
    ShowMyDialog();
    Navigator.pop(context);
  },

to

 onTap: () {
    ShowMyDialog();

  },

You were popping the context as soon as the Dialog open so it wasn't showing on that time . now try with this

  • Related