Flutter:我可以取出小部件吗?

Flutter: Can I take out widgets?

很难解释我想要什么。所以我会试着用一个例子来解释:

现在我有一个 Card() 我有一个 ListView() 并且 Card 的高度是 100

现在我想将 ListView 移出 Card

图片示例:

注意:我可以在 Card 中添加其他小部件。例如:

Card(
  child : Column(
     [
         Text('abc'),
         PopUpListView(),
     ])
)

对不起我的英语不好:(

我不明白你的意思,但是如果你想在卡片高度 100 中放置一个列表视图,你可以使用以下代码片段;

Container(
        height: 100,
        color: Colors.red,
        child: Card(


          child: ListView(
            children: [
              Text(widget.title),
              Text(widget.title),
              Text(widget.title),

            ],

          ),
        ),
      )

您可以使用 Stack() 小部件。试试这个片段。

Stack( children: [ Card(), ListView(), ], )