最佳答案
我有一个集装箱:
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
实现这种行为?