“showdialog con builder flutter” Código de respuesta

showdialog con builder flutter

showDialog(
        context: context,
        builder: (BuildContext context) => new AlertDialog(
          title: new Text('Warning'),
          content: new Text('Hi this is Flutter Alert Dialog'),
          actions: <Widget>[
            new IconButton(
                icon: new Icon(Icons.close),
                onPressed: () {
                  Navigator.pop(context);
                })
          ],
        ));
Arrogant Armadillo

Mostrar diálogo Cerrar Flutter

  BuildContext dialogContext; // <<----
  showDialog(
    context: context, // <<----
    barrierDismissible: false,
    builder: (BuildContext context) {
      dialogContext = context;
      return Dialog(
        child: new Row(
          mainAxisSize: MainAxisSize.min,
          children: [
            new CircularProgressIndicator(),
            new Text("Loading"),
          ],
        ),
      );
    },
  );

  await _longOperation();
  Navigator.pop(dialogContext); // <<----
loonix

Respuestas similares a “showdialog con builder flutter”

Preguntas similares a “showdialog con builder flutter”

Más respuestas relacionadas con “showdialog con builder flutter” en Dart

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código