AspectRatio( aspectRatio: 1, child: Container( color: Colors.blue, ), ),
字符串我正在尝试将April Ratio的宽度和高度交给其子容器。我正在尝试使用此信息来创建响应式文本小部件。有什么方法可以获得April Ratio的高度和宽度吗?
9w11ddsr1#
你可以使用LayoutBuilder来获取AspectRatio的高度和宽度。它以约束的maxWidth和maxHeight的形式返回。
LayoutBuilder
AspectRatio
maxWidth
maxHeight
AspectRatio( aspectRatio: 1, child: LayoutBuilder( builder: (context, constraints) { debugPrint(constraints.toString()); return Container( color: Colors.blue, ); } ), ),
字符串
1条答案
按热度按时间9w11ddsr1#
你可以使用
LayoutBuilder
来获取AspectRatio
的高度和宽度。它以约束的maxWidth
和maxHeight
的形式返回。字符串