Answers for "click container flutter"

2

clickable container flutter

GestureDetector(
    onTap: () { 
        print("Tapped a Container"); 
    },
    child: Container(...),
)
Posted by: Guest on September-13-2020
0

flutter onclick container

InkWell(
  onTap: () {}, // Handle your callback
  child: Ink(height: 100, width: 100, color: Colors.blue),
)
Posted by: Guest on January-23-2021

Code answers related to "Dart"

Browse Popular Code Answers by Language