15
Wie kann ich einen AlertDialog bei einem FlatButton-Klick schließen?
Ich habe folgendes AlertDialog. showDialog( context: context, child: new AlertDialog( title: const Text("Location disabled"), content: const Text( """ Location is disabled on this device. Please enable it and try again. """), actions: [ new FlatButton( child: const Text("Ok"), onPressed: _dismissDialog, ), ], ), ); Wie kann ich _dismissDialog()entlassen sagen AlertDialog?