273

我正在尝试为我的 Flutter 应用程序构建一个简单的登录页面。我已经成功构建了 TextFields 和登录/登录按钮。我想添加一个水平 ListView。当我运行代码时,我的元素消失了,如果我在没有 ListView 的情况下执行它,它又可以了。我怎样才能正确地做到这一点?

return new MaterialApp(
        home: new Scaffold(
          appBar: new AppBar(
            title: new Text("Login / Signup"),
          ),
          body: new Container(
            child: new Center(
              child: new Column(
              mainAxisAlignment: MainAxisAlignment.center,
                children: <Widget>[
                  new TextField(
                    decoration: new InputDecoration(
                      hintText: "E M A I L    A D D R E S S"
                    ),
                  ),
                  new Padding(padding: new EdgeInsets.all(15.00)),
                  new TextField(obscureText: true,
                    decoration: new InputDecoration(
                      hintText: "P A S S W O R D"
                    ),
                    ),
                  new Padding(padding: new EdgeInsets.all(15.00)),
                  new TextField(decoration: new InputDecoration(
                    hintText: "U S E R N A M E"
                  ),),
                  new RaisedButton(onPressed: null,
                  child:  new Text("SIGNUP"),),
                  new Padding(padding: new EdgeInsets.all(15.00)),
                  new RaisedButton(onPressed: null,
                  child: new Text("LOGIN"),),
                  new Padding(padding: new EdgeInsets.all(15.00)),
                  new ListView(scrollDirection: Axis.horizontal,
                  children: <Widget>[
                    new RaisedButton(onPressed: null,
                    child: new Text("Facebook"),),
                    new Padding(padding: new EdgeInsets.all(5.00)),
                    new RaisedButton(onPressed: null,
                    child: new Text("Google"),)
                  ],)

                ],
              ),
            ),
            margin: new EdgeInsets.all(15.00),
          ),
        ),
      );
4

17 回答 17

471

我也有这个问题。我的解决方案是使用Expanded小部件来扩展剩余空间。

Column(
  children: <Widget>[
    Expanded(
      child: horizontalList,
    )
  ],
);
于 2018-03-27T07:20:46.330 回答
242

错误原因:

Column扩展到主轴方向(垂直轴)的最大尺寸,ListView.

解决方案:

因此,您需要限制ListView. 有很多方法,你可以选择最适合你需要的。


  1. 如果要允许ListView占用内部所有剩余空间Column,请使用Expanded.

    Column(
      children: <Widget>[
        Expanded( //        <-- Use Expanded 
          child: ListView(...),
        )
      ],
    )
    

  1. 如果您想将您限制在ListView某个范围内height,请使用SizedBox.

    Column(
      children: <Widget>[
        SizedBox(
          height: 200, // Constrain height.
          child: ListView(...),
        )
      ],
    )
    

  1. 如果你ListView很小,你可以试试shrinkWrap它的属性。

    Column(
      children: <Widget>[
        ListView(
          shrinkWrap: true, // Set this
        )
      ],
    )
    

  1. 如果您想ListView尽可能小,请使用Flexiblewith ListView.shrinkWrap

    Column(
      children: <Widget>[
        Flexible( //        <-- Use Flexible 
          child: ListView(
            shrinkWrap: true, // and set this
          ),
        )
      ],
    )
    
于 2019-07-21T10:23:21.170 回答
138

您可以检查控制台输出。它打印错误:

在 performResize() 期间抛出了以下断言:水平视口的高度没有限制。视口在横轴上扩展以填充其容器并约束其子级以匹配其在横轴上的范围。在这种情况下,水平视口被赋予了无限量的垂直空间来扩展。

您需要在水平列表中添加高度约束。例如用高度包装在容器中:

Container(
  height: 44.0,
  child: ListView(
    scrollDirection: Axis.horizontal,
    children: <Widget>[
      RaisedButton(
        onPressed: null,
        child: Text("Facebook"),
      ),
      Padding(padding: EdgeInsets.all(5.00)),
      RaisedButton(
        onPressed: null,
        child: Text("Google"),
      )
    ],
  ),
)
于 2017-08-14T08:49:53.207 回答
42

Expanded Widget 会在可用空间的情况下尽可能地增加它的大小 由于 ListView 本质上具有无限的高度,因此会导致错误。

 Column(
  children: <Widget>[
    Flexible(
      child: ListView(...),
    )
  ],
)

在这里我们应该使用Flexible小部件,因为即使没有足够的小部件在全屏上呈现,它也只会占用展开全屏所需的空间。

于 2020-06-13T08:57:50.573 回答
37

SingleChildScrollView作为父母,一个Column小部件,然后是列表视图小部件作为最后一个孩子。

在列表视图中添加这些属性对我有用。

  physics: NeverScrollableScrollPhysics(),
  shrinkWrap: true,
  scrollDirection: Axis.vertical,
于 2019-12-26T07:02:29.567 回答
12

这是一个非常简单的方法。有不同的方法可以做到这一点,比如你可以得到它ExpandedSizedbox或者Container应该根据需要使用它。

  1. 使用Expanded:扩展 a 、 或 的子级的小部件,Row以便ColumnFlex级填充可用空间。

    Expanded(
        child: ListView(scrollDirection: Axis.horizontal,
            children: <Widget>[
              OutlineButton(onPressed: null,
                  child: Text("Facebook")),
              Padding(padding: EdgeInsets.all(5.00)),
              OutlineButton(onPressed: null,
                  child: Text("Google")),
              Padding(padding: EdgeInsets.all(5.00)),
              OutlineButton(onPressed: null,
                  child: Text("Twitter"))
            ]),
      ),
    

使用Expanded小部件可以使RowColumnFlex扩展以填充沿主轴的可用空间(例如,水平地用于行或垂直地用于列)。

  1. 用途SizedBox:指定尺寸的盒子。

    SizedBox(
        height: 100,
        child: ListView(scrollDirection: Axis.horizontal,
            children: <Widget>[
              OutlineButton(
                  color: Colors.white,
                  onPressed: null,
                  child: Text("Amazon")
              ),
              Padding(padding: EdgeInsets.all(5.00)),
              OutlineButton(onPressed: null,
                  child: Text("Instagram")),
              Padding(padding: EdgeInsets.all(5.00)),
              OutlineButton(onPressed: null,
                  child: Text("SoundCloud"))
            ]),
     ),
    

如果给定一个孩子,这个小部件会强制它的孩子有一个特定的宽度和/或高度(假设这个小部件的父级允许值)。

  1. 用途Container:一个方便的小部件,它结合了常见的绘画定位尺寸小部件。

     Container(
        height: 80.0,
        child: ListView(scrollDirection: Axis.horizontal,
            children: <Widget>[
              OutlineButton(onPressed: null,
                  child: Text("Shopify")),
              Padding(padding: EdgeInsets.all(5.00)),
              OutlineButton(onPressed: null,
                  child: Text("Yahoo")),
              Padding(padding: EdgeInsets.all(5.00)),
              OutlineButton(onPressed: null,
                  child: Text("LinkedIn"))
            ]),
      ),
    

所有三个的输出将是这样的

在此处输入图像描述

于 2020-09-06T04:36:26.060 回答
12

正如上面其他人所提到的,使用 Expanded 包装列表视图是解决方案。

但是当您处理嵌套列时,您还需要将 ListView 限制在一定的高度(经常遇到这个问题)。

如果有人有其他解决方案,请在评论中提及或添加答案。

例子

  SingleChildScrollView(
   child: Column(
     children: <Widget>[
       Image(image: ),//<< any widgets added
       SizedBox(),
       Column(
         children: <Widget>[
           Text('header'),  //<< any widgets added
            Expanded(child: 
            ListView.builder(
              //here your code
               scrollDirection: Axis.horizontal,
        itemCount: items.length,
        itemBuilder: (BuildContext context, int index) {
            return Container();
                   } 
         )
        ),
        Divider(),//<< any widgets added
         ],
       ),

     ],
   ), 
  );
于 2020-04-17T22:03:04.673 回答
10

实际上,当您阅读文档时,ListView 应该在 Expanded Widget 内,这样它才能工作。

  Widget build(BuildContext context) {
return Scaffold(
    body: Column(
  children: <Widget>[
    Align(
      child: PayableWidget(),
    ),
    Expanded(
      child: _myListView(context),
    )
  ],
));

}

于 2020-01-17T16:07:31.013 回答
7

您可以使用FlexFlexible小部件。例如:

Flex(
direction: Axis.vertical,
children: <Widget>[
    ... other widgets ...
    Flexible(
        flex: 1,
        child: ListView.builder(
        itemCount: ...,
        itemBuilder: (context, index) {
            ...
        },
        ),
    ),
],

);

于 2020-04-30T09:18:38.353 回答
5
  Column(
    children: <Widget>[
      Text('Leading text widget'),
      ListView(
        shrinkWrap: true,
        physics: NeverScrollableScrollPhysics(),
        children: <Widget>[
          ListTile(
            leading: Icon(Icons.map),
            title: Text('Map'),
          ),
          ListTile(
            leading: Icon(Icons.photo_album),
            title: Text('Album'),
          ),
          ListTile(
            leading: Icon(Icons.phone),
            title: Text('Phone'),
          ),
        ],
      ),
      Text('More widget'),
    ],
  );

只需使用

shrinkWrap: true,

physics: NeverScrollableScrollPhysics(),

列表视图中的属性

于 2020-10-20T07:37:07.860 回答
5

用扩展的小部件包装您的 Listview

于 2021-12-22T12:19:01.490 回答
3

[解决方案预览] - [列表项是可滚动的,但标题是固定的]

在此处输入图像描述

我有非常小而直接的答案,请参阅将 listview 放在列中将强制列无限扩展,这基本上是一个错误。

现在,如果您physics: NeverScrollableScrollPhysics(),像其他人建议的那样在 listview 中放置,那么如果您禁用其中的滚动,那么拥有 listview 的意义何在..

有一个简单的解决方法,坦率地说,我是通过命中和试验来解决这个问题的。让我在代码之后给你一个小解释。

Column(
      children: [
        Text(
          "All Bookings",
          style: TextStyle(fontSize: 20, fontWeight: FontWeight.w600, color: Colors.brown[700]),
        ),
        Expanded(
          child: Container(
            margin: EdgeInsets.only(top: 24),
            child: ListView.builder(
              itemCount: 30,
              itemBuilder: (BuildContext context, int index) => ListTile(
                title: Text("List Item ${index + 1}"),
              ),
            ),
          ),
        ),
      ],
    )

我需要在 Column 中将标题作为第一个元素,然后放置一个 Listview 以便用户可以拥有滚动列表。这是一种通用的要求。你也可以把它放在底部表或模态中。

代码说明:

  1. 我将第一个孩子保持在列内的标题 ok (我不想滚动,我希望它被修复)
  2. 我在列内扩展了子项,这就像获取列中的所有“剩余空间”。
  3. 在里面我保留了容器(只是为了在标题和列表视图之间留一些空间和边距)这是可选的,你可以删除容器,它仍然可以工作。
  4. 现在 Listview 受到很好的约束,它不会尝试在列中无限拉伸。由于 Expanded 小部件已经对其进行了约束。

如果我在任何地方有错或此代码不起作用,请纠正我(它现在可以正常工作,没有错误:)

于 2021-03-16T16:22:13.173 回答
2

你需要做两件事:

  • 包裹Column在里面SingleChildScrollView
  • 添加shrinkWrap: truephysics: NeverScrollableScrollPhysics()ListView

为什么有效:

据我了解,NeverScrollableScrollPhysics禁用ListView. 因此,滚动与SingleChildScrollView. 如果我错了,请在下面评论。

SingleChildScrollView(
  child: Column(
    crossAxisAlignment: CrossAxisAlignment.start,
    children: [
      Text('Filter'),
      ListView.separated(
        shrinkWrap: true,
        physics: NeverScrollableScrollPhysics(),
        itemCount: rides.length,
        itemBuilder: (BuildContext context, int index) {
          # return some widget
        }
      ),

于 2021-03-13T15:31:35.830 回答
1

就我而言,我正在使用

  • 单子滚动视图
  • 柱子
  • 容器
  • FutureBuilder - 列表视图

我想用整个列滚动最后一个滚动视图来添加

physics: NeverScrollableScrollPhysics(),

列表视图中的这一行。

于 2021-08-18T18:58:26.517 回答
0
return new MaterialApp(
    home: new Scaffold(
      appBar: new AppBar(
        title: new Text("Login / Signup"),
      ),
      body: new Container(
        child: new Center(
          child: ListView(
          //mainAxisAlignment: MainAxisAlignment.center,
          scrollDirection: Axis.vertical,
            children: <Widget>[
              new TextField(
                decoration: new InputDecoration(
                  hintText: "E M A I L    A D D R E S S"
                ),
              ),
              new Padding(padding: new EdgeInsets.all(15.00)),
              new TextField(obscureText: true,
                decoration: new InputDecoration(
                  hintText: "P A S S W O R D"
                ),
                ),
              new Padding(padding: new EdgeInsets.all(15.00)),
              new TextField(decoration: new InputDecoration(
                hintText: "U S E R N A M E"
              ),),
              new RaisedButton(onPressed: null,
              child:  new Text("SIGNUP"),),
              new Padding(padding: new EdgeInsets.all(15.00)),
              new RaisedButton(onPressed: null,
              child: new Text("LOGIN"),),
              new Padding(padding: new EdgeInsets.all(15.00)),
              new ListView(scrollDirection: Axis.horizontal,
              children: <Widget>[
                new RaisedButton(onPressed: null,
                child: new Text("Facebook"),),
                new Padding(padding: new EdgeInsets.all(5.00)),
                new RaisedButton(onPressed: null,
                child: new Text("Google"),)
              ],)

            ],
          ),
        ),
        margin: new EdgeInsets.all(15.00),
      ),
    ),
  );
于 2020-08-15T11:29:03.130 回答
0

另外,您可以尝试使用CustomScrollView

CustomScrollView(
      controller: _scrollController,
      slivers: <Widget>[
        SliverList(
          delegate: SliverChildBuilderDelegate(
            (BuildContext context, int index) {
              final OrderModel order = _orders[index];

              return Container(
                margin: const EdgeInsets.symmetric(
                  vertical: 8,
                ),
                child: _buildOrderCard(order, size, context),
              );
            },
            childCount: _orders.length,
          ),
        ),
        SliverToBoxAdapter(
          child: _buildPreloader(context),
        ),
      ],
    );

提示:_buildPreloader返回CircularProgressIndicatorText

就我而言,我想在 ListView 下显示一些小部件。使用Column对我不起作用,因为 Column 内 ListView 周围的小部件始终在屏幕上“向上”显示,例如“绝对位置”

对不起,我的英语不好

于 2021-02-11T12:49:42.263 回答
0

尝试使用 Slivers:

Container(
    child: CustomScrollView(
      slivers: <Widget>[
        SliverList(
          delegate: SliverChildListDelegate(
            [
              HeaderWidget("Header 1"),
              HeaderWidget("Header 2"),
              HeaderWidget("Header 3"),
              HeaderWidget("Header 4"),
            ],
          ),
        ),
        SliverList(
          delegate: SliverChildListDelegate(
            [
              BodyWidget(Colors.blue),
              BodyWidget(Colors.red),
              BodyWidget(Colors.green),
              BodyWidget(Colors.orange),
              BodyWidget(Colors.blue),
              BodyWidget(Colors.red),
            ],
          ),
        ),
        SliverGrid(
          gridDelegate: SliverGridDelegateWithFixedCrossAxisCount(crossAxisCount: 2),
          delegate: SliverChildListDelegate(
            [
              BodyWidget(Colors.blue),
              BodyWidget(Colors.green),
              BodyWidget(Colors.yellow),
              BodyWidget(Colors.orange),
              BodyWidget(Colors.blue),
              BodyWidget(Colors.red),
            ],
          ),
        ),
      ],
    ),
  ),
)
于 2020-07-16T17:08:15.940 回答