Having trouble displaying splashes using an InkWell
Use an Ink widget ! The Ink widget draws on the same widget that InkWell does, so the splash appears.
class InkWellCard extends StatelessWidget(
@override
Widget build(BuildContext context) {
return Card(
elevation: 3.0,
child: Ink(
child: InkWell (
onTap:() => print("Ordering..."),
child: Text("Order Bageis'),
)
)
);
}
}