作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用此代码在 flutter 应用程序中构建滚动 slider 来构建约束:
var cardAspectRatio = 12.0 / 16.0;
var widgetAspectRatio = cardAspectRatio * 1.2;
AspectRatio (
aspectRatio: widgetAspectRatio,
child: LayoutBuilder(builder: (context, constraints) {
var width = constraints.maxWidth;
var height = constraints.maxHeight;
})
I/flutter ( 6957): RenderAspectRatio has unbounded constraints.
I/flutter ( 6957): This RenderAspectRatio was given an aspect ratio of
0.8999999999999999 but was given both unbounded
I/flutter ( 6957): constraints: BoxConstraints(unconstrained)
I/flutter ( 6957): size: MISSING
I/flutter ( 6957): aspectRatio: 0.9
最佳答案
我有同样的问题,我意识到错误代码给了我解决方案,将 AspectRatio 放在容器小部件中并指定它的宽度和高度。在您的情况下,下面的代码将起作用
Container(
width = your width;
height = your height;
child:AspectRatio (
aspectRatio: widgetAspectRatio,
child: LayoutBuilder(builder: (context, constraints) {
var width = constraints.maxWidth;
var height = constraints.maxHeight;
}
)
)
关于flutter - RenderAspectRatio 具有无限约束,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55788523/
我正在尝试使用此代码在 flutter 应用程序中构建滚动 slider 来构建约束: var cardAspectRatio = 12.0 / 16.0; var widgetAspectRatio
我是一名优秀的程序员,十分优秀!