📌  相关文章
📜  列表视图中的颤动列不起作用 - 无论代码示例

📅  最后修改于: 2022-03-11 14:58:57.333000             🧑  作者: Mango

代码示例1
The column and listview has an unbounded height, so use the listview to display horizontally or wrap it in a container with a specified height ;) You go this!
Column(
  children: [
    Expanded(
      child: horizontalList,
    )
  ],
);