Не удается обернуть горизонтальный прокручиваемый ListView в столбце - PullRequest
0 голосов
/ 10 июня 2018

Я пытаюсь создать следующий пользовательский интерфейс в Flutter.

enter image description here

Вот как выглядит мой код и соответствующий вывод.

body: new Column(
      children: <Widget>[
        getTabs(),
        new Container(
          child: Expanded(
            child: new ListView.builder(
                scrollDirection: Axis.horizontal,
                itemCount: 10,
                itemBuilder: (context, index) => new Container(
                  alignment: Alignment.topCenter,
                  child: new Stack(
                        alignment: Alignment.topCenter,
                        children: <Widget>[
                          new Padding(
                            padding: const EdgeInsets.all(8.0),
                            child: new Container(
                              width: 60.0,
                              height: 60.0,
                              decoration: new BoxDecoration(
                                shape: BoxShape.circle,
                                image: new DecorationImage(
                                    fit: BoxFit.fill,
                                    image: new NetworkImage(
                                        "https://pbs.twimg.com/profile_images/916384996092448768/PF1TSFOE_400x400.jpg")),
                              ),
                              //margin: const EdgeInsets.symmetric(horizontal: 8.0),
                            ),
                          ),
                          index == 0
                              ? Positioned(
                                  right: 10.0,
                                  bottom: 10.0,
                                  child: new CircleAvatar(
                                    backgroundColor: Colors.blueAccent,
                                    radius: 10.0,
                                    child: new Icon(
                                      Icons.add,
                                      size: 14.0,
                                      color: Colors.white,
                                    ),
                                  ))
                              : new Container()
                        ],
                      ),
                ),

            ),
          ),
        ),
      ],
    )

Вот что я получаю после работы этого кода.

enter image description here

Список работает нормально.Я даже могу прокрутить его, но как только я пытаюсь обернуть его в столбец, я получаю ошибки.Я хочу обернуть его в столбец, чтобы добавить некоторые виджеты непосредственно перед списком.Я не могу обернуть его внутри любого другого виджета.Это имело бы смысл, если бы я мог обернуть этот просмотр списка внутри карты.Я что-то упустил?

The following assertion was thrown during performLayout():
RenderFlex children have non-zero flex but incoming height constraints are unbounded. When a column is in a parent that does not provide a finite height constraint, for example, if it is in a vertical scrollable, it will try to shrink-wrap its children along the vertical axis. Setting a flex on a child (e.g. using Expanded) indicates that the child is to expand to fill the remaining space in the vertical direction. These two directives are mutually exclusive. If a parent is to shrink-wrap its child, the child cannot simultaneously expand to fit its parent. Consider setting mainAxisSize to MainAxisSize.min and using FlexFit.loose fits for the flexible children (using Flexible rather than Expanded). This will allow the flexible children to size themselves to less than the infinite remaining space they would otherwise be forced to take, and then will cause the RenderFlex to shrink-wrap the children rather than expanding to fit the maximum constraints provided by the parent.

Любая помощь высоко ценится.

Ответы [ 2 ]

0 голосов
/ 07 февраля 2019

У вас есть два варианта: установить высоту для столбца или поставить расширенный.

0 голосов
/ 10 июня 2018

Положите Expanded вокруг Container, содержащего ListView, а не вокруг ListView.

...