Answers for "on tap sction container flutter"

1

flutter make a container clickable

Card(
  child: new InkWell(
    onTap: () {
      print("tapped");
    },
    child: Container(
      width: 100.0,
      height: 100.0,
    ),
  ),
),
Posted by: Guest on April-16-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 "on tap sction container flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language