最佳答案
我是个新手,我想在完成任务后结束我的对话。我试过:
Navigator.pop(context, true);
但是我的屏幕变黑了,对话框还在上面。这是我的对话框代码。
Dialog _dialog = new Dialog(
child: new Row(
mainAxisSize: MainAsixSize.min,
children: <Widget> [
new CircularProgressIndicator(),
new Text("Loading")]),
);