Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.7k views
in Technique[技术] by (71.8m points)

flutter布局实现问题

我现在有个这样的布局,左侧是一片区域,右侧是一张图片,整体的高度是由右侧图片自适应后的高度撑起来的,请问如何让左侧区域的高度占满,也就是等同于图片自适应后的高度?

试了给Container加alignment,设置height:double.infinity都不行。

Row(
  children: [
    Expanded(
      child: Container(
        // 想要让这个容器的高度占满
      )
    ),

    ConstrainedBox(
      constraints: BoxConstraints(
        minHeight: 150
      ),
      child: Image.network('xxx',
        width: 100,
      )
    )
  ],
)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...