作者热门文章
- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
我有以下 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
?
最佳答案
Navigator.pop()
应该做的伎俩。您还可以使用它来返回对话框的结果(如果它为用户提供了选择)
关于android - 如何在 FlatButton 单击时关闭 AlertDialog?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44159819/
我是一名优秀的程序员,十分优秀!