0

我想设置一个卡片列表视图,每个卡片至少有 3 张 CirclerAvatar 图像,如下所示:

通缉

***绿色的应该和旁边的一样

到目前为止,这是我的代码,无法弄清楚如何将它们全部对齐到卡片的底部。我尝试了对齐小部件,但似乎不是解决方案。

ListView(
      children: <Widget>[
        Card(
          elevation: 5,
          child: Stack(
            children: <Widget>[
              Row(
                children: <Widget>[
                  CircleAvatar(
                    maxRadius: (MediaQuery.of(context).size.width / 2 - 100),
                    minRadius: 25.0,
                    backgroundImage: NetworkImage(_user.profilePictureURL),
                  ),
                  CircleAvatar(
                    maxRadius: (MediaQuery.of(context).size.width / 2 - 165),
                    minRadius: 25.0,
                    backgroundImage: NetworkImage(_user.profilePictureURL),
                  ),
                ],
              ),
            ],
          ),
        ),
      ],
    ),

这是结果:

结果

4

1 回答 1

2

在您的行中,添加以下内容:

crossAxisAlignment: CrossAxisAlignment.end
于 2019-10-24T22:27:31.660 回答