如何删除小部件? -更具体地说,是Column实例及其所有元素

时间:2019-05-30 20:07:13

标签: flutter dart widget flutter-layout

我具有使用2个 BoxDecoration 创建的功能。 我想删除此Column实例及其包含的所有内容。 我不知道该怎么做。有人可以帮忙吗?

以下是仅包含要点的代码:

 Column _createAppointment() {
       return //Column I want to remove
       new Column(children: <Widget>[ 

       //First child (to be removed)
       new Container(
            //alignment+padding+etc

            decoration: new BoxDecoration(
              //colors+shadow+etc
            ),

            child: new Row(children: <Widget>[     
             //Contents of the Box
            ],),

        ),

       //Second child (to be removed)
          new Container(
            //alignment+padding+etc

            decoration: new BoxDecoration(
              //colors+shadow+etc
            ),
            child: Text("Some Text"),
          )

       ],);

    }

我真的是移动开发的新手(我在汽车行业工作,但我确实想学习移动开发)。因此,如果需要的话,您可以说得更具体些吗。谢谢!

我发现了将Widget包装为 Dismissible 的一些方法,但是我不太确定它的实际作用,也不知道从何而来。

0 个答案:

没有答案