InkWell not showing ripple effect

I think adding color to the container is covering over the ink effect https://api.flutter.dev/flutter/material/InkWell/InkWell.html This code seems to work body: new Center( child: new Container( child: new Material( child: new InkWell( onTap: (){print(“tapped”);}, child: new Container( width: 100.0, height: 100.0, ), ), color: Colors.transparent, ), color: Colors.orange, ), ), just click the middle square. Edit: … Read more