how to put tapping effect on card in flutter code example
Example 1: how to put tapping effect on card in flutter
Card(
child: new InkWell(
onTap: () {
print("tapped");
},
),
),
Example 2: how to put tapping effect on card in flutter
GestureDetector(
onTap: () => ......,
child: Card(...),
);