반응형
질문
나는 이 컨테이너를 가지고 있습니다:
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
를 클릭하면 IconButton
과 같은 방식으로 onPressed()
메서드가 실행되기를 원합니다. Container
로 이러한 동작을 어떻게 구현할 수 있을까요?
답변
다음과 같이 GestureDetector
위젯을 사용할 수 있습니다:
new GestureDetector(
onTap: (){
print("Container clicked");
},
child: 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"),
]
),
)
);
반응형
댓글