Запитання з тегом «flutter-alertdialog»

16
Як відхилити AlertDialog після натискання кнопки FlatButton?
У мене таке 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, ), ], ), ); Як я можу змусити _dismissDialog()відмовитись AlertDialog?
Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.