弹框
_showAlertDialog(String msg) {
showDialog<bool>(
context: context,
builder: (BuildContext context) {
return AlertDialog(
title: Text("提示"),
content: Text(msg),
actions: [
TextButton(
onPressed: () {
// 关闭弹框
Navigator.of(context).pop(true);
},
child: Text("确定"),
),
],
);
},
);
return null;
}
联系方式: dccmmtop@foxmail.com