我具有使用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 的一些方法,但是我不太确定它的实际作用,也不知道从何而来。