我有这个容器:
new Container(
width: 500.0,
padding: new EdgeInsets.fromLTRB(20.0, 40.0, 20.0, 40.0),
color: Colors.green,
child: new Column(
children: [
new Text("Ableitungen"),
]
),
),
当用户单击 时Container
,我希望onPressed()
触发一个方法(例如可以这样做IconButton
)。我怎样才能实现这种行为Container
?