如何获取AlertDialog的宽高 - Flutter Web

How to get the width and height of AlertDialog - Flutter Web

我想在flutter中获取AlertDialog的准确高度和宽度。

我不明白你的目的是什么,而是指定一个尺寸来测量它。

在警报对话框的上下文中 您可以使用以下方法将其他组件放入其中。使用以下代码,您可以获得您认为是上下文的 UI 组件内的测量值。

alert_dialog_height=MediaQuery.of(context).size.height; alert_dialog_width=MediaQuery.of(context).size.width;

如果您需要在警报对话框的中间高度放置一些东西,只需使用

alert_dialog_height/2