任何人都可以告诉这个对话框有什么问题吗?
Can any one tell what is wrong with this Dialog?
我有这个对话框但是当我调用它时它给我这个错误:
未处理的异常:'package:flutter/src/widgets/localizations.dart':断言失败:第 453 行第 12 行:'context != null':不正确。,
我的代码:
return showDialog(
context: context,
child: AlertDialog(
title: Text(title),
content: Text(msg),
actions: [cancel, ok],
),
);
错误消息确切地告诉你出了什么问题:你的变量context
是null
。
您需要提供一个不为空的 context
。
您还应该提供 builder
而不是 child
,因为这种构建对话框的方式 deprecated 是有充分理由的。
我有这个对话框但是当我调用它时它给我这个错误: 未处理的异常:'package:flutter/src/widgets/localizations.dart':断言失败:第 453 行第 12 行:'context != null':不正确。, 我的代码:
return showDialog(
context: context,
child: AlertDialog(
title: Text(title),
content: Text(msg),
actions: [cancel, ok],
),
);
错误消息确切地告诉你出了什么问题:你的变量context
是null
。
您需要提供一个不为空的 context
。
您还应该提供 builder
而不是 child
,因为这种构建对话框的方式 deprecated 是有充分理由的。