如何获取 AlertDialog 的宽高 - Flutter Web
Posted
技术标签:
【中文标题】如何获取 AlertDialog 的宽高 - Flutter Web【英文标题】:How to get the width and height of AlertDialog - Flutter Web 【发布时间】:2021-08-26 16:48:13 【问题描述】:我想在 Flutter 中获得 AlertDialog 的确切高度和宽度。
【问题讨论】:
【参考方案1】:我不明白你的目的是什么,而是指定一个尺寸来测量它。
在警报对话框的上下文中,您可以在其中放置其他组件,使用以下内容。使用以下代码,您可以获得您认为是上下文的 UI 组件内的测量值。
alert_dialog_height=MediaQuery.of(context).size.height; alert_dialog_width=MediaQuery.of(context).size.width;
如果您需要在警报对话框的中间高度放置一些东西,只需使用
alert_dialog_height/2
【讨论】:
以上是关于如何获取 AlertDialog 的宽高 - Flutter Web的主要内容,如果未能解决你的问题,请参考以下文章