我有这个对话框但是当我调用它时,它给了我这个错误: 未处理的异常:'package:flutter/src/widgets/localizations.dart':断言失败:第 453 行 pos 12:'context != null':不正确. ,我的代码:
return showDialog(
context: context,
child: AlertDialog(
title: Text(title),
content: Text(msg),
actions: [cancel, ok],
),
);